Print() should add a newline by default - unless you tell it otherwise.  However there have been other changes in Python 3:
Old: print "The answer is", 2*2
New: print("The answer is", 2*2)
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!
Old: print >>sys.stderr, "fatal error"
New: print("fatal error", file=sys.stderr)
Old: print (x, y)       # prints repr((x, y))
New: print((x, y))      # Not the same as print(x, y)!
Old = Python 2.5, New = Python 3.
More details here: http://docs.python.org/3.1/whatsnew/3.0.html