my_list = [1, 2, 3, 4] print(*my_list, sep=" ")
list = ['a','b','c'] for i in list: print(i, end=' ')