Can someone tell me why my output doesn't show every element in my list on one line. Instead it shows underneath each other. I'm not really sure why this is happening.
pon = ' \n I \n '
list = [pon, pon, pon, pon, pon, pon, pon, pon, pon]
for element in list:
print(element,end='')