I have a list of emails, phones and user info that I want to output in csv but I need to follow a format that contains duplicate columns.
email, email, phone, phone, phone, name, address
[email protected], [email protected], 90192, 2980, 9203, John Doe, 82 High Street
[email protected], [email protected], 1341, 55, 665, Roe Jan, 11 Low Street
[email protected],,, 55, 111, Roe Jan, 11 Low Street
Is this possible in pandas? What is the best way of adding rows and columns with same name?

pandas