Week two- python practice Answers
February 2, 20221. Write one for loop to print out each character of the string my_str on a separate line. my_str = "MICHIGAN" for i in my_str: print(i) 2. Write one for loop to print out each element of the list several_things. Then, write another for loop to print out the TYPE of each element of...