Python2与Python3的区别收集
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python2与Python3的区别收集相关的知识,希望对你有一定的参考价值。
1、python2中,在列表推导中for关键字之后的赋值操作可能会影响到列表推导上下文中的同名变量:
Python 2.7.8 (default, Jun 30 2014, 16:03:49) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> x=‘aaa‘
>>> test = [x for x in ‘ABC‘]
>>> x
‘C‘
python3:
>>> x=‘aaa‘
>>> test = [x for x in ‘ABC‘]
>>> x
‘aaa‘
以上是关于Python2与Python3的区别收集的主要内容,如果未能解决你的问题,请参考以下文章