Answers for "how to reverse a function in python"

28

reverse string in python

'hello world'[::-1]
'dlrow olleh'
Posted by: Guest on December-06-2019
3

reverse function python

# The Reverse operation - Python 3:
Some_List = [1, 2, 3, 4, 1, 2, 6]  
Some_List.reverse()  
print(Some_List)
# Result: [6, 2, 1, 4, 3, 2, 1]
Posted by: Guest on November-18-2020

Code answers related to "how to reverse a function in python"

Python Answers by Framework

Browse Popular Code Answers by Language