题解 | #数字颠倒#
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
python 这样很简单 这样写是能通过, 但是我看题目写的较难, 是不是落下了什么
while True:
try:
tmp=list(input().strip())
tmp.reverse()
print(''.join(tmp))
except:
break