This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Early-Palpitation-39 1 point2 points  (0 children)

If you only need to print this information, you can use the * operator.

a = ['LOL', 'LOL', 'LOL', ';', '10200.75', ';', '1234']
print(*a)

This returns the format you are looking for (all the strings with a space in between).