我有一只狗
我有一只狗
题解
题解 | #数字颠倒#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #数字颠倒#
227 浏览
0 回复
2022-06-08
我有一只狗
+关注
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
while True:
try:
x = input()
y = x[::-1]
print(''.join(y))
except:
break
Python3
举报
收藏
赞
评论加载中...