#一目了然版 def rot13(s): result = “” for v in s: c = ord(v)…
最近经常与编码这方面打交道。每次用到rot13编码时都得去Baidu在线编解码。次数多了,就觉得繁琐了,于是就…