Python 2, Python 3 で string を bytes に変換する。 Python Twitter Facebook はてブ Pocket LINE コピー 2018-11-19 2018-11-09 スポンサーリンク # Python 2 and 3: from builtins import bytes, chr data = 'mytext' data = bytes(data, 'ascii') 共通の処理系にしておきたかったので、メモ書き。 Cheat Sheet: Writing Python 2-3 compatible code — Python-Future documentation
コメント