I have table x:
x
website 0 http://www.google.com/ 1 http://www.yahoo.com 2 None
I want to replace python None with pa
Here's another option:
df.replace(to_replace=[None], value=np.nan, inplace=True)