97,输入一个字符串,然后输出它的逆向串。 str=input("请输入字符串:") l=list(str) for i in range(len(l)-1,-1,-1): print (l[i],end='')