Source Code:
(back to article)
def reverse_string(string): return string[::-1] reverse_string("hello")
Result:
Report an issue