( btami | 2008. 12. 04., cs – 21:56 )

Eddig se volt külön print meg println utasítás:

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

Old: print # Prints a newline
New: print() # You must call the function!

De ha neked nagyon tetszik a print()/println(), akkor lecserélheted a __builtin__.print -et a saját print() függvényedre és írsz egy println()-t. Éppen ez a print -> print() változtatás egyik előnye!