很多人说 Python3 与 Python2 没什么不同,无非就是 print
写法不同而已,很显然他没怎么处理过兼容问题。
1 | AttributeError: module 'string' has no attribute 'letters' |
报这个错误是因为 python3 去掉了该方法,使用 ascii_letters
替换即可
1 | str.ascii_letters |
最近热读
扫码关注公众号,或搜索公众号“温欣爸比”
及时获取我的最新文章