codeflash/pie_test_set/p00006.py
2024-05-21 10:29:26 -07:00

8 lines
130 B
Python

def problem_p00006(input_data):
str = input_data
str_lis = list(str)
str_lis.reverse()
return "".join(str_lis)