I have to remove entire row with the column, which has no value my dataframe looks like
Name place phonenum
mike china 12344
ireland 897654
suzzi japan 09876
chang china 897654
Australia 897654
india 876543
required output should be
Name place phonenum
mike china 12344
suzzi japan 09876
chang china 897654
I have used df1=df[df.Name == '']
I got output
Name place phonenum
Please help me
print(df.index)?