题解 | #数字颠倒#
数字颠倒
https://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
num = input() print(str(num)[::-1])
::-1 对应 start: stop: step。-1 作为 step 时,起始点会移动到终点,而停止点会移动到前端。
数字颠倒
https://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
num = input() print(str(num)[::-1])
::-1 对应 start: stop: step。-1 作为 step 时,起始点会移动到终点,而停止点会移动到前端。
相关推荐