python怎么判断一个数是几位数

2024年04月26日 MongoDB Python51

python判断数字是几位数的方法:

1、利用str函数将数字转化成字符串,再利用len函数判断位长。

num = input()
length = str(num)
print(len(length))

运行结果如下:

2、利用除10取商,通过循环次数判断位数

c=0
a=int(raw_input("the number you want type in:"))
while a!=0:
      a=a/10
      c +=1
print c

更多Python知识请关注Python视频教程栏目。

本文链接:http://so.lmcjl.com/news/3135/

展开阅读全文