📜  如何在 python 中计算输入中的位数 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:11.392000             🧑  作者: Mango

代码示例1
n=int(input("Enter number:"))
count=0
while(n>0):
    count=count+1
    n=n//10
print("The number of digits in the number are:",count)