- 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 33 times
Exercise 02 (30 points) The call list (someString) transforms a string into a list of characters. Write the following fu
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Exercise 02 (30 points) The call list (someString) transforms a string into a list of characters. Write the following fu
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.