Python AttributeError: module 'string' has no attribute 'atoi'

python2 中可以用string.atoi 在python3中会报错
替换的方案是

string.atoi(your_str)

替换为

int(your_str)

这个代码python2和python3都可以运行.

posted @ 2018-10-19 11:10  vercont  阅读(1938)  评论(0编辑  收藏  举报