shaoheshaohe 发表于 2019-5-1 14:31:57

NameError:name ‘xrange’ is not defined

运行某代码时,报错:NameError:name ‘xrange’ is not defined原因:在Python 3中,range()与xrange()合并为range( )。
我的python版本为python3.5。解决办法:将xrange( )函数全部换为range( )。

shaoheshaohe 发表于 2019-5-2 23:15:53

py2 py3的差别还是很大

shaoheshaohe 发表于 2019-5-2 23:16:01

map filter等都改了

shaoheshaohe 发表于 2019-5-2 23:16:08

zip的用法也变了

shaoheshaohe 发表于 2019-5-2 23:16:22

list(map())才能在py3工作
页: [1]
查看完整版本: NameError:name ‘xrange’ is not defined