Hacker News new | ask | show | jobs
by dragonwriter 4399 days ago
> PRINT WITHOUT NEW LINE sys.stdout.write('blah') I can't use print to print?

You can. Compare the output from:

  print "foo"
  print "bar"
With that from:

  print "foo", 
  print "bar"