蛇三千出洞
http://www.python.org/download/releases/3.0/
Python 3.0 (r30:67507, Dec 3 2008, 20:14:27) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
****************************************************************
Personal firewall software may warn about the connection IDLE
makes to its subprocess using this computer's internal loopback
interface. This connection is not visible on any external
interface and no data is sent to or received from the Internet.
****************************************************************
IDLE 3.0
>>> print 'hello py3k'
SyntaxError: invalid syntax (<pyshell#0>, line 1)
>>> print ('hello py3k')
hello py3k
>>>