8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I noticed in your notebook, there was a cell with
df[len(df['name'] > 3)] #incorrect where, >3 comparison is inside the len() function, it should be outside, like this
df[len(df['name'] ) > 3] #correct I believe it was just a typing error, hopefully you can quickly dix it, thanks.