Write a function count_digits (s) that counts the number of digits in the string s and returns answer (an integer).
The function must internally use a for-loop.
Example ;
>>> count_digits("1q2w3e4r5t")
5
>>> count_digits("42")
2
>>> count_digits("tea")
, Id appreciate any help:)