Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
How do you shift an item in a list two units down?
Ex. Move the number '1' two units down.
>>> move([1,2,3,4]) [2,3,1,4]