Python3000出来啦!我先尝个鲜

Python3000出来啦!我先尝个鲜



[Copy to clipboard] [ - ]
CODE:
Python 3.0a1 (py3k:57844, Aug 31 2007, 16:54:27) [MSC v.1310 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.0a1      
>>> a = 1
>>> a
1
>>> b = a
>>> b
1
>>> print b
SyntaxError: invalid syntax (<pyshell#4>, line 1)
>>> print(b)
1

开始beta乐
感受了一下,用起来不是很习惯!
晕,怎么PRINT语句都改变了啊.,,到底改变了哪些地方,快研究一下撒..
不是说先出2.6吗?
py源文件含中文要用UTF-8格式了,不用加 # -*- coding: gbk -*-  之类的
好家伙
就改了一下 print
其它的,用户基本上感觉不出来..

说是速度比 2.5 快 33%
版本更新太快了,