题解列表

筛选

字符逆序-题解(Python代码)

摘要:#字符逆序python切片操作 废话不多说,直接上代码: ```python str=input() print(str[-1::-1]) ``` input()的返回值类型为str,可以……