convert string pyton code example
Example 1: how to make an int into a string python
int x = 10
string p = str(x)
Example 2: python: convert variable as character
df['myvar'] = df['myvar'].astype(str)
int x = 10
string p = str(x)
df['myvar'] = df['myvar'].astype(str)