lst = [1,2,3,4,5] print(*lst,end=" ") #output 1 2 3 4 5
# using * operator and sep = ' ' scores = [11, 12, 13, 14, 15, 16] print(*scores, sep = ' ')