python将一个三位数反转(python将一个三位数反向输出)

http://www.itjxue.com  2023-03-27 19:54  来源:未知  点击次数: 

输入一个三位数,将它反向输出,请用python写代码

a?=?input("输入一个三位数")

target?=?""

for?i?in?reversed(a):

????target?+=?i

print(target)

python如何反转一个整数?

while True:

n=str(input())

if len(str(int(n))) == len(n):

print(int(n[::-1]))

else:

print('前导符不能为0!')

Python使用循环结构编写:输入一个整数,将整数中的数字反转,并在控制打印出来?

n = eval(intpu())

res = 0

while n 0:

res = res * 10 + n %10

n = n // 10

print(res)

(责任编辑:IT教学网)

更多

推荐金山WPS文章