python基礎練習---正の整数ビット数を判断して逆順に並べる


タイトル:5桁以下の正の整数を与えて、要求:一、それが数桁であることを求めて、二、逆順に各位の数字を印刷します.
 
 
  1 # -*- coding:utf-8 -*-
  2 
  3 n = input('        5      :')
  4 
  5 a = n/10000
  6 b = n%10000/1000
  7 c = n%1000/100
  8 d = n%100/10
  9 e = n%10
 10 
 11 if a>=1:
 12     print '5  '
 13     print e,d,c,b,a
 14 elif a==0 and b>=1:
 15     print '4  '
 16     print e,d,c,b
 17 elif b==0 and c>=1:
 18     print '3  '
 19     print e,d,c
 20 elif c==0 and d>=1:
 21     print '2  '
 22     print e,d
 23 elif d==0 and e>=1:
 24     print '1  '
 25     print e
 26 

結果:
 
 
        5      :12345
5  
5 4 3 2 1
cl@cl-M14xR2:~/pythoncl/python  100 $ python 43.py 
        5      :6789
4  
9 8 7 6
cl@cl-M14xR2:~/pythoncl/python  100 $ python 43.py 
        5      :2
1  
2