I want to print the items in a list without starting a new line (1 2 3). I am using pycharm.
alist = [1,2,3] for i in alist: print (i, end=" ")