Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started