index, name, id
1 john 512
2 Anne 895
3 Angel 897
4 Lusia 777
So I want to filter them by name endings and get names only which have vowel endings. And the result must be like that:
index, name, id
1 Anne 895
2 Lusia 777
After filtering, I want to save the result in another .csv file. I am trying various ways to get the correct result, However, I could not do that. please help me