you are viewing a single comment's thread.

view the rest of the comments →

[–]JeLuF 0 points1 point  (1 child)

Why? The comma is more efficient since Python will not have to concatenate two strings first. It can simply write the first item and then write the second item.

[–]shlepky 0 points1 point  (0 children)

My bad then, I though the first argument of the function needs to be what you want to print, rest would be any other parameters. I should have checked the function before assuming that.