最佳答案
我有 x
表:
website
0 http://www.google.com/
1 http://www.yahoo.com
2 None
我想用熊猫代替 python。我试过:
x.replace(to_replace=None, value=np.nan)
但我得到了:
TypeError: 'regex' must be a string or a compiled regular expression or a list or dict of strings or regular expressions, you passed a 'bool'
我该怎么做呢?