好吧,赶紧贴一下。
#-*- coding:utf-8 -*-
#代码版本均为python 3.5.1
#Level 2 import re
file = open("Level 2.txt","r")
for line in file.readlines():
chars = ' '.join(re.findall(r'[a-z]|[A-Z]|[0-9]',line))
print (chars,end="")
代码挺简单的,可以试着从网页中直接获取,那段文件代码。
这个。。。你们可以自己写。我就懒得写了。
使用正则,findall进行匹配。
最后顺利输出的到
equality
所以,顺利进入下一关。
http://www.pythonchallenge.com/pc/def/equality.html