题解列表

筛选

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

摘要:```python list = input()#输入数据 list=list[::-1]#翻转数据 print(''.join(list))#输出数据(双引号里面没有空格)emmmmmmmmm……