Answers for "concatentae stroing column pandas"

0

pandas dataframe add two columns int and string

df = df['Day'].map(str) + '-' + df['Month'].map(str) + '-' + df['Year'].map(str)
Posted by: Guest on June-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language