标签: pandas
我有一个数据框,其中一些是空的。我想将其设置为None字符串,以便比NaN值更容易解析。
答案 0 :(得分:1)
df = df.replace(np.nan, 'None', regex=True)
使用上面的代码。