Konwertuj obiekt typu danych na Python String

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