Question: Define a function named stringsToListInPlace that takes 1 parameter, a list of strings. This function is similar to stringToLists but instead of returning a new

Define a function named stringsToListInPlace that takes 1 parameter, a list of strings. This function is similar to stringToLists but instead of returning a new list, it should return None. Mutate the input list such that each string is replaced by a list of its individual letters. Test Case: stringsToListInPlace(['qz','M','P']) should evaluate return None and modify the input to be [['q','z'],['M'],['P']]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!