Say I have a data frame
id col1 col2
1  1    foo
2  1    bar
And a list of column names
l = ['col3', 'col4', 'col5']
How do I add new columns to the data frame with zero as values?
id col1 col2 col3 col4 col5
1  1    foo     0    0    0
2  1    bar     0    0    0
 
     
     
    