for count,_ in enumerate(df['Name']):
if len(df['Name'][count])<4:
df.drop(count,axis=0,inplace=True)
continue
I am not getting this syntax of using "count" like this, can someone explain this if this is correctly written or not?
I have seen this on youtube in a lecture video of pandas.