3
Oops, I wonder how I can invert entire columns with using python.
FRUTA | VITAMINA | PREÇO
LARANJA | C | 2.00
MAÇÃ | B1 | 2.00
BANANA | B2 | 1.00
I would like to know how I can transform the previous column into the current column:
PREÇO | VITAMINA | FRUTA
2.00 | C | LARANJA
2.00 | B1 | MAÇÃ
1.00 | B2 | BANANA
I just want to change the whole column with all the values, how can I do that? Thank you =)
exactly what I wanted! Thank you Leonardo!
– Léo Lamera