Seri Python ke daftar string

# With series of int zipcodes:
zip_strs = us_zips['zipcode'].astype(str).values.tolist()

# Resulting list:
['10601', '60047', '50301', '10606']
Powerful Penguin