5 lines
66 B
Python
5 lines
66 B
Python
|
|
>>> u'foo'.encode('rot13')
|
||
|
|
'sbb'
|
||
|
|
>>> 'sbb'.decode('rot13')
|
||
|
|
u'foo'
|