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)
コンソールpythonbase64.pyで実行すると、以下のエラーメッセージが表示されます。
しかし、textMateで正しく実行できます。
AttributeError:'モジュール'オブジェクトに属性'encodestring'がありません
ファイルの名前はbase64.pyであってはなりません。使用しているモジュールと衝突します。ファイルの名前を変更すると、解決するはずです。