jb/scripts/reverse_string.py

3 lines
109 B
Python
Raw Normal View History

2025-06-05 16:04:09 +08:00
def process(input_strings: list) -> list:
"""反转输入字符串"""
return [input_strings[0][::-1]]