Answers for "take first few characters python int pandas"

0

pandas column string first n characters

df1['StateInitial'] = df1['State'].str[:2]
print(df1) 
Posted by: Guest on March-10-2020

Code answers related to "take first few characters python int pandas"

Python Answers by Framework

Browse Popular Code Answers by Language