# prints everything in the object l=[1,2,3] d={ 2:3, 4:5, 1:3 } t=(3,4,5) #output print(*l) #1 2 3 print(*d) #2 4 1 print(*t) #3 4 5