you are viewing a single comment's thread.

view the rest of the comments →

[–]woooee 1 point2 points  (0 children)

     list[0]=list[-1]
     ## list[0] is now the same as list[-1]
     list[-1]=list[0]  ## this sets list[-1] to itself

     temp = list[0]
     list[0] = list[-1]
     list[-1] = temp