题解 | #数字颠倒#
数字颠倒
https://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
b=list(str(int(input()))) b.reverse() print(''.join(b))
step1:输入转列表
step2: 列表逆排序
Step3:列表转字符串
数字颠倒
https://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
b=list(str(int(input()))) b.reverse() print(''.join(b))
step1:输入转列表
step2: 列表逆排序
Step3:列表转字符串
相关推荐