解决方法
isnull是isna的别名.直译在
code source of pandas:
isnull = isna
确实:
>>> pd.isnull <function isna at 0x7fb4c5cefc80>
所以我建议使用isna.
isnull = isna
确实:
>>> pd.isnull <function isna at 0x7fb4c5cefc80>
所以我建议使用isna.