python 3 求教
查看原帖
python 3 求教
110781
Free_S楼主2021/8/12 07:39
s=input()
i=len(s)-1
while i>=0:
    print(s[i],end='')
    i-=1

为何以上代码在本地的ide上运行无误,提交之后会全WA呢,求教各位大佬?

2021/8/12 07:39
加载中...