O(1) for reverse a string python code example
Example 1: python reverse string
'String'[::-1] #-> 'gnirtS'
Example 2: python reverse a string
#linear
def reverse(s):
str = ""
for i in s:
str = i + str
return str
#splicing
'hello world'[::-1]