Skip to content

Instantly share code, notes, and snippets.

@lufeihaidao
Created April 9, 2014 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lufeihaidao/10287796 to your computer and use it in GitHub Desktop.
Save lufeihaidao/10287796 to your computer and use it in GitHub Desktop.
Q1 of python challenge in python
# 推荐的做法
import string
text='''g fmnc wms bgblr rpylqjyrc gr zw fylb. rfyrq ufyr amknsrcpq ypc dmp.
bmgle gr gl zw fylb gq glcddgagclr ylb rfyr'q ufw rfgq rcvr gq qm jmle.
sqgle qrpgle.kyicrpylq() gq pcamkkclbcb. lmu ynnjw ml rfc spj.'''
table = string.maketrans(string.ascii_lowercase,
string.ascii_lowercase[2:]+string.ascii_lowercase[:2])
text.translate(table)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment