I have 1 list:
mylist=[John, Stefan, Bjarke, Eric, Weirdo]
I want to print the whole thing in one line separated by commas using a for loop, like:
for x in mylist:
print x
How do I do this?
|
|
or if John Stefan etc are not already strings:
|
|||||||||
|
|
Other answers are smarter, and more 'Pythonic'. But if you really need a loop:
But this will let one space at next printing before the print. If you use
So, to answer to your question:
But this line will end with a coma, which is not the case with |
||||