So I was given a list and I must print the type of each item in the list. I can clearly see that there are strings and integers but I need it to print out in Python. We just
foo = [1, 0.2, "bar"] for i in foo: print(type(i))
Should print out the type of each item