Skip to content

redtecher/pythonchallenge_solve

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PythonChallenge

解决pythonchallenge.com中题目的代码。

第0关

2的38次方,得到值赋值到url中

第1关

字符转义 每个字符串增加2 翻译出来后题目推荐你使用方法 string.maketrans()

maketrans() 在Python3中,不存在maketrans方法 使用时使用内建函数 str.maketrans()

x='abcdefghijklmnopqrstuvwxyz'
y='cdefghijklmnopqrstuvwxyzab'
trans=str.maketrans(x,y)
string.translate(trans)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages