Advertisement
elena1234

move column to specific place in Python

Oct 12th, 2022
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | Source Code | 0 0
  1. # move column to specific place
  2. column_to_move = out.pop("Standing_Time1")
  3. out.insert(8, "Standing_Time1", column_to_move )
  4. out.head()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement