convert type of in python code example
Example 1: python: convert variable as character
df['myvar'] = df['myvar'].astype(str)
Example 2: how to tyoecast in python
example = 1.3234325
print(type(example))
df['myvar'] = df['myvar'].astype(str)
example = 1.3234325
print(type(example))