Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
done solution in Clear category for Count Digits by pakicetus
def count_digits(text: str):
count = 0
for chr in text:
if chr.isnumeric(): count += 1
return count
July 9, 2020