python list slice reverse code example

Example 1: how to flip a list backwards in python

myList = [0,1,2,3,4,5]
myList.reverse()
print(myList)
#OR
print(myList[::-1])

Example 2: list slicing reverse python

#This option produces a reversed copy of the list. Contrast this to mylist.reverse() which
#reverses the original list
>>> mylist
[1, 2, 3, 4, 5]

>>> mylist[::-1]
[5, 4, 3, 2, 1]

Example 3: list slicing reverse python

#This option reverses the original list, so a reversed copy is not made
>>> mylist = [1, 2, 3, 4, 5]
>>> mylist
[1, 2, 3, 4, 5]

>>> mylist.reverse()
None

>>> mylist
[5, 4, 3, 2, 1]

https://dbader.org/blog/python-reverse-list

Example 4: python 3 slice reverse

stringname[::-1]