Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
import base64 if __name__ == '__main__': res = base64.encodestring('srcdasd') print(res)
我在控制台 python base64.py 中运行,得到以下错误消息。
但我可以在 textMate 中正确运行它。
AttributeError:“模块”对象没有属性“编码字符串”
您的文件名不应该是 base64.py,它与您正在使用的模块冲突。重命名文件,应该可以解决。