题解 | #数字颠倒#
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
s = str(input())
for i in range(len(s)):
print(s[(-i)-1],end='')
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
s = str(input())
for i in range(len(s)):
print(s[(-i)-1],end='')
相关推荐