This should be a straightforward python question, but it's not working for me. I have a list of strings, the columns, as well as an integer, with repeated number of columns as the output.
multi_cols = lpd.columns
len(multi_cols)
103
multi_cols = [[k]*6 for k in lpd.columns]
len(multi_cols)
103
Why does this output 103?