Konversi objek tipe data menjadi string python

#convert datatype object to string 
df['column-name'] = df['column-name'].astype('str') 
SaadMakhdoom