Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Solutions for "Count Digits" solution in Uncategorized category for Count Digits by kaisa.kucherenko
def count_digits(str):
count = 0
for s in str:
if s.isdigit():
count+=1
return count
May 10, 2020