Is this the valid “if” expression for not printing the names of less than four characters

后端 未结 0 1083
-上瘾入骨i
-上瘾入骨i 2020-12-09 19:16
for count,_ in enumerate(df[\'Name\']):
    if  len(df[\'Name\'][count])<4:
        df.drop(count,axis=0,inplace=True)
        continue

I am not

相关标签:
回答
  • 消灭零回复
提交回复
热议问题