I have a pandas dataframe df
with this contents;
Column1 Column2 Column3
C11 C21 C31
C12 C22 C32
C13 C23 C33
I would like to swap the contents between Column 1 and Column 2.
The output dataframe should look like this;
Column1 Column2 Column3
C21 C11 C31
C22 C12 C32
C23 C13 C33
I am using python v3.6