how to access string element from reverse order python code example
Example 1: python reverse string
'String'[::-1] #-> 'gnirtS'
Example 2: reverse a string in python
reverse a string
'String'[::-1] #-> 'gnirtS'
reverse a string