how to reverse a string list in python code example
Example 1: how to reverse a list in python
mylist
[1, 2, 3, 4, 5]
mylist[::-1]
[5, 4, 3, 2, 1]
Example 2: python reverse a string
#linear
def reverse(s):
str = ""
for i in s:
str = i + str
return str
#splicing
'hello world'[::-1]