3 lines
42 B
Python
3 lines
42 B
Python
def reverse_string(s):
|
|
return s[::-1]
|
def reverse_string(s):
|
|
return s[::-1]
|