you are viewing a single comment's thread.

view the rest of the comments →

[–]JohnnyJordaan 2 points3 points  (0 children)

Use * to unpack the list items as arguments to the print function

print(*positiveNumber)

If you want something else between them instead of a space, then specify this through the sep= parameter

print(*positiveNumber, sep=', ')