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
The following line replaces None with NaN:
None
NaN
df['column'].replace('None', np.nan, inplace=True)