python怎么破解空间密码
导读:python怎么破解空间密码?s = raw_input('[开始加密]please input your str:' s = list(s n = 0 for sw in s: s[n] = chr(ord(sw +3 ...
python怎么破解空间密码?
s = raw_input('[开始加密]please input your str:') s = list(s) n = 0 for sw in s: s[n] = chr(ord(sw)+3) n = n + 1 sout = '' for sw2 in s: sout = sout + sw2 print '[加密结果]:',sout解密的类似,主要用到ord、chr函数。
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: python怎么破解空间密码
本文地址: https://pptw.com/jishu/58857.html
