Answers for "pandas python keep first n characters of a string"

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 "pandas python keep first n characters of a string"

Python Answers by Framework

Browse Popular Code Answers by Language