I have a dataframe as follows
Name Age
0 Tom 20
1 nick 21
2
3 krish 19
4 jack 18
5
6 jill 26
7 nick
Desired output is
Name Age
0 Tom 20
1 nick 21
3 krish 19
4 jack 18
6 jill 26
7 nick
The index should not be changed and if possible would be nice if I don't have to convert empty strings to NaN. It should be removed only if all the columns have ''
empty strings