Question: python 3.7.8 The following function takes a string as a parameter and returns a list containing all of the digits in the string. The list
python 3.7.8
The following function takes a string as a parameter and returns a list containing all of the digits in the string. The list contains integers rather than strings. If there are no digits in the string, an empty list is returned. If there are no digits in the string, an empty list is returned. If a digit appears multiple times, it is included in the list multiple times.
def findDigits(s): newLst = [] for i in s: if i in range (0,10): newLst.append(i) return newLst
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
