changing null values in pandas to a string code example
Example 1: pandas change dtype to string
df['id'].astype(str)
0 1
1 5
2 z
3 1
4 1
5 7
6 2
7 6
Example 2: pandas replace empty string with nan
df = df.replace(r'^\s*$', np.NaN, regex=True)