함수 rot13()

1 개요[ | ]

함수 rot13()

2 PHP[ | ]

echo str_rot13('HELLO');
echo str_rot13('foobar 1.2.3');

3 Python[ | ]

import codecs
print( codecs.encode('HELLO', 'rot_13') )
print( codecs.encode('foobar 1.2.3', 'rot_13') )

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}