5.18.1: LAB: Print string in reverse using for loops\ code example
Example 1: python reverse string
'String'[::-1] #-> 'gnirtS'
Example 2: how to reverse a string in python
belief = "the world is mine, hello"[::-1]
print(belief)
'String'[::-1] #-> 'gnirtS'
belief = "the world is mine, hello"[::-1]
print(belief)