What’s New In Python 3.0

1.The print statement has been replaced with a print() function, with keyword arguments to replace most of the special syntax of the old printstatement (PEP 3105).

2.

dict

Fixes dictionary iteration methods. dict.iteritems() is converted to dict.items()dict.iterkeys() to dict.keys(), and dict.itervalues() todict.values(). Similarly, dict.viewitems()dict.viewkeys() and dict.viewvalues() are converted respectively to dict.items()dict.keys() anddict.values(). It also wraps existing usages of dict.items()dict.keys(), and dict.values() in a call to list.

20180401 Ken:

Python3.6.4中:

list(dict.keys())[0] 可用,dict.keys()[0]不可用 

3.PEP 3111raw_input() was renamed to input(). That is, the new input() function reads a line from sys.stdin and returns it with the trailing 

4.        if type(secondDict[key])==dict:#可以用下面语句替换
        #if isinstance(secondDict[key],dict):
        '''Pthon3.6.4中已不适用如下方法
        if type(secondDict[key])._name_=='dict':

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值