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