List
my_list = ["a","b","c", 3, True] for item in my_list: print(item) for item in my_list: print(item, end=" ")
Run