summaryrefslogtreecommitdiff
path: root/progs/a728.py
blob: 1d1bf456a8007151ccd36188d7e58c91e74ed6f1 (plain)
1
2
3
4
5
6
def count_Digit(n):
    count = 0
    while n != 0:
        n //= 10
        count += 1
    return count