Home / Code-challenges / Debug Reverse String
def reverse_string(s): return s[-1::] print(reverse_string("hello"))
Python
Debugging