add two string columns in pandas code example
Example 1: python merge strings in columns
df["period"] = df["Year"].astype(str) + df["quarter"]
Example 2: pandas dataframe add two columns int and string
df = df['Day'].map(str) + '-' + df['Month'].map(str) + '-' + df['Year'].map(str)