Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
isdigit solution in Clear category for Count Digits by kamjir
def count_digits(text: str) -> int:
return len([i for i in text if i.isdigit()])
Sept. 16, 2020