Python allows large number of variables to be printed on the same line (without line return) Please compare: var x = "aa" var y = "bb" stdout.write(x, " ", y, "\n") Run
# stdout.write(x y z & " ") # error # stdout.write(x, y, z & " ") # error x = "aa" y = "bb" z = "cc" print(x, y, z, end=" ") Run