У меня есть таблица x: website 0 http://www.google.com/ 1 http://www.yahoo.com 2 None Я хочу заменить python None на pandas NaN. Я старался: 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...