「Pythonでrot13を扱う」の版間の差分

提供: Python入門
移動: 案内検索
(ページの作成:「Pythonでrot13を扱う方法を紹介します。 '''読み方''' ;x: __TOC__ == 概要 == rot13を使うには、encodeとdecodeを使用します。 'foo'.enc...」)
 
 
行2: 行2:
  
 
'''読み方'''
 
'''読み方'''
;[[x]]:
+
;rot13:ろっと じゅーさん
 
__TOC__
 
__TOC__
  

2014年1月22日 (水) 23:59時点における最新版

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

関連項目