Ответ:
Объяснение:
def num_digits(n):
count = 0
while n > 0:
if n == 0:
count += 1
n = n/10
return count
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
def num_digits(n):
count = 0
while n > 0:
if n == 0:
count += 1
count += 1
n = n/10
return count