Question: Need help with Intro to Computer Science (Python) problem Write a function makeString() that takes a string as a parameter and returns the string produced
Need help with Intro to Computer Science (Python) problem

Write a function makeString() that takes a string as a parameter and returns the string produced by concatenating all the non- digits that appear in the string. If the string does not contain any non-digits or an empty string is provided as a parameter, the value 0 should be returned. If a non-digit appears in the suing multiple times, it will appear in number produced multiple times. The following shows several sample executions of the function: >>> makeString("alb2C_3d4") 'abed' >>> makeString("1234") 0 >>> makeScringC("") 0 >>> makeString("abc") 'abc
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
