Second solution in Clear category for Count Digits by kalauroma7997
count_digits = lambda text: sum([a.isdigit() for a in text])
Oct. 1, 2020
Comments: