Python 练习实例29
题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。
程序分析:学会分解出每一位数。
程序源代码:
实例(Python2.x)
#!/usr/bin/python
# -*- coding: UTF-8 -*-
x = int(raw_input("请输入一个数:\n"))
a = x / 10000
b = x % 10000 / 1000
c = x % 1000 / 100
d = x % 100 / 10
e = x % 10
if a != 0:
print "5 位数:",e,d,c,b,a
elif b != 0:
print "4 位数:",e,d,c,b,
elif c != 0:
print "3 位数:",e,d,c
elif d != 0:
print "2 位数:",e,d
else:
print "1 位数:",e
实例(Python3.x)
#!/usr/bin/python
x = int(input("请输入一个数:\n"))
a = x // 10000
b = x % 10000 // 1000
c = x % 1000 // 100
d = x % 100 // 10
e = x % 10
if a != 0:
print ("5 位数:",e,d,c,b,a)
elif b != 0:
print ("4 位数:",e,d,c,b)
elif c != 0:
print ("3 位数:",e,d,c)
elif d != 0:
print ("2 位数:",e,d)
else:
print ("1 位数:",e)
以上实例输出结果为:
请输入一个数: 23459 5 位数: 9 5 4 3 2
请输入一个数: 3472 4 位数: 2 7 4 3
叮咚
126***[email protected]
其他解法
输出实例:
叮咚
126***[email protected]
叮咚
126***[email protected]
其他参考解法:
测试输出结果:
叮咚
126***[email protected]
mythwind
774***[email protected]
其他参考解法:
mythwind
774***[email protected]
未来星
mas***[email protected]
其他参考解法:
未来星
mas***[email protected]
等一个人
252***[email protected]
Python3 下使用列表的 reverse 方法:
等一个人
252***[email protected]
swordzjc
hfu***[email protected]
参考方法:
swordzjc
hfu***[email protected]
菜鸟py
928***[email protected]
参考方法:
菜鸟py
928***[email protected]
qingfeng
297***[email protected]
参考方法:
qingfeng
297***[email protected]
朦胧
253***[email protected]
Python3 测试实例:
朦胧
253***[email protected]
fish
353***[email protected]
参考方法:
fish
353***[email protected]
colinshi
col***[email protected]
Python3 下测试:
colinshi
col***[email protected]
CosmosHua
cos***[email protected]
Python3 参考实例:
CosmosHua
cos***[email protected]
按剑当歌
yan***[email protected]
参考方法:
按剑当歌
yan***[email protected]
苏格拉顶
qia***[email protected]
Python3 参考:
苏格拉顶
qia***[email protected]