Conversation
Replying to
So is there some strange behavior with pandas in how it treats the string "None" vs the None type? This would be good to know in case I ever fall into that rabbit hole. Thanks!
Replying to
Yes. If you have a string column and the value None appears in it, it's actually a string not the standard None type so you have to use == and !=. notnull returns True!!
1
1

