Answers for "python series to list of string"

0

python series to list of string

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

# Resulting list:
['10601', '60047', '50301', '10606']
Posted by: Guest on April-15-2021

Code answers related to "python series to list of string"

Python Answers by Framework

Browse Popular Code Answers by Language