create new column in dataframe and assign existing column code example
Example 1: how to assign a new value in a column in pandas dataframe
df = df.assign(industry='yyy')
Example 2: insert new column to dataframe
group = np.random.randint(10, size=6)
df_new['Group'] = group