Pythonでrot13を扱う
提供: Python入門
スポンサーリンク
Pythonでrot13を扱う方法を紹介します。
読み方
- rot13
- ろっと じゅーさん
概要
rot13を使うには、encodeとdecodeを使用します。
'foo'.encode('rot13')
ソースコード rot13.py
encodeでも、decodeも同じ結果になります。
#!/usr/local/bin/python print 'hoge'.encode('rot13') print 'ubtr'.encode('rot13') print 'ubtr'.decode('rot13')
実行例
% python rot13.py ubtr hoge hoge
関連項目
- Pythonで2進数を扱う
- Pythonで8進数を扱う
- Pythonで10進数を扱う
- Pythonで16進数を扱う
- Pythonでbase64を扱う
- Pythonでuuencodeを扱う
- Pythonでrot13を扱う
- Pythonで任意のrotを扱う
ツイート
スポンサーリンク