-2

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]
4

1 に答える 1