第一种:
利用str函数将数字转化成字符串,再利用len函数判断位长。
a=int(raw_input("the number you want type in:")
b=len(str(a))
print b
第二种:
c=0
a=int(raw_input("the number you want type in:"))
while a!=0:
a=a/10
c =1
print c
第一种:
利用str函数将数字转化成字符串,再利用len函数判断位长。
a=int(raw_input("the number you want type in:")
b=len(str(a))
print b
第二种:
c=0
a=int(raw_input("the number you want type in:"))
while a!=0:
a=a/10
c =1
print c