Table Modifications
General Info
Useful Snippets

8.0.6 Change column data type to string

Example:

# Convert data type of column to string
DF['A'].astype(str)

# or you can convert by applying the 'str' function to your column
DF['A'].apply(str)