题解 | #数字颠倒#
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
while True:
try:
x = input()
y = x[::-1]
print(''.join(y))
except:
break
try:
x = input()
y = x[::-1]
print(''.join(y))
except:
break
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
相关推荐