Page 1 of 1

Exercise 02 (30 points) The call list (someString) transforms a string into a list of characters. Write the following fu

Posted: Fri Jul 08, 2022 6:35 am
by answerhappygod
Exercise 02 30 Points The Call List Somestring Transforms A String Into A List Of Characters Write The Following Fu 1
Exercise 02 30 Points The Call List Somestring Transforms A String Into A List Of Characters Write The Following Fu 1 (20.83 KiB) Viewed 34 times
Exercise 02 (30 points) The call list (someString) transforms a string into a list of characters. Write the following function: def printAsString (a_listString) where a listString is a word that has been transformed into a list using the list () function. The function should print the list as a word. For example, if the list is ['h', 'e', '1', '1', 'o' ], the function should print hello. The function does not return anything. Test the function after writing it.