Given the dataframe below, I'd like to filter the row data based on the 'Filterlist' list.
nome valor
0 foo 2
1 bar 3
2 fiz 2
3 zaz 5
4 foo 6
5 far 7
6 bar 2
7 fiz 9
8 zoo 6
9 boo 3
10 zuz 8
11 zuz 10
listaFiltro = ['fiz', 'zoo', 'far']
Thanks in advance for your help!