淘先锋技术网

首页 1 2 3 4 5 6 7

s=raw_input('[开始加密]pleaseinputyourstr:')s=list(s)

n=0

forswins:

s[n]=chr(ord(sw)+3)

n=n+1

sout=''

forsw2ins:

sout=sout+sw2

print'[加密结果]:',sout

解密的类似,主要用到ord、chr函数。