View Single Post
Posts: 324 | Thanked: 371 times | Joined on Dec 2009 @ Vancouver, BC
#2
See:
http://docs.python.org/release/3.0.1/whatsnew/3.0.html

Old: print x, # Trailing comma suppresses newline
New: print(x, end=" ") # Appends a space instead of a newline
 

The Following User Says Thank You to Slocan For This Useful Post: