Source Code:
(back to article)
def reverse_string(string): return "".join(reversed(string)) reverse_string("hello")
Result:
Report an issue