을 계산하는 프로그램의 번호를 자리에서는 파이썬

코드 예제

5
0

숫자의 번호에서 숫자 python

n = 1234 //Any Random Number
digits = len(str(n)) //Saves the number of digits of n into the variable digits
1
0

수를 계산하는 방법을의 숫자 입력에서는 파이썬

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)

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................