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
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.