LoginSignup
1
3

More than 5 years have passed since last update.

ROT13(シーザー暗号)の解き方 備忘録

Posted at

シーザー暗号の解き方に関する備忘録です。

解き方

Pythonに元々実装であるため、

$ python
>>> import codecs
>>> codecs.decode('Uryyb, Jbeyq!','rot13')
'Hello, World!'
>>> 

これだけで解けちゃいます。

対話型シェルの終わり方

qでもquitでも終わらず、(エディタの名残かな?)
少し困ったので書いておきます。

exit()

これだけでいけたんですね。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3