how to combine 2 columns in python code example
Example 1: pandas dataframe add two columns int and string
df1 = df['1st Column Name'].map(str) + df['2nd Column Name'].map(str) + ...
Example 2: merge two columns pandas
df["period"] = df["Year"] + df["quarter"]