私はのpython3でプログラムの下に実行されているが、エラー:文字列のデコード()メソッド
Str = "this is string example....wow!!!";
Str = Str.encode('base64','strict');
print ("Encoded String: " + Str)
print ("Decoded String: " + Str.decode('base64','strict'))
を取得し、エラーを取得しています実行中のpython3でbase64では、次のとおりです。 -
File "learn.py", line 646, in <module>
Str = Str.encode('base64','strict');
LookupError: 'base64' is not a text encoding; use codecs.encode() to handle arbitrary codecs
エラーメッセージに表示する内容を実装しようとしましたか? –
また、 'base64'モジュールを使用するだけではどうですか? –
はい私は今、base64モジュールを試しましたが、望ましい出力を得られませんでした。 – njoe