题解 | 牛牛逆序输出
牛牛逆序输出
https://www.nowcoder.com/practice/d981181ce18e4cce945fdf52daf037a1
n = input() a = list(n) b = a[::-1] c = "".join(b) d = int(c) print(d)
牛牛逆序输出
https://www.nowcoder.com/practice/d981181ce18e4cce945fdf52daf037a1
n = input() a = list(n) b = a[::-1] c = "".join(b) d = int(c) print(d)
相关推荐