首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python 3.2中用string.atoi()产生异常,怎么解决

2012-03-08 
python 3.2中用string.atoi()产生错误,如何解决? import string string.atoi( 10 )+4Traceback

python 3.2中用string.atoi()产生错误,如何解决?
> > > import string
> > > string.atoi( '10 ') + 4 
Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
  string.atoi('10') + 4
AttributeError: 'module' object has no attribute 'atoi'


我按照 [征服PYTHON:语言基础与典型应用].孙广磊.完美书签.清晰PDF版 
里原样写的代码,为什么是错误的。原书用的是Python 2.5 


[解决办法]
好垃圾的书。

Python code
int('10') + 4
[解决办法]
这啥书啊
atoi一看就是c/c++转过来的
python讲的是简洁,直接int(str)和str(int)互相转来转去多方便
[解决办法]
python3没有向下兼容,你要使用python3的话需要看python3的书

热点排行