第六关地址 http://www.pythonchallenge.com/pc/def/channel.html 和前几关一样,首先看网页源码吧.反正不看也没办法... <html><!-- <-- zip --><head> <title>now there are pairs</title> <link rel="stylesheet" type="text/css" href="…
下一关... 一张图片,于是就点击了一下. 跳转到了 http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345 显示的是: and the next nothing is 44827 下一个... and the next nothing is 45439 再来一个.. Your hands are getting tired and the next nothing is 94485... 一直循环下去了...肯定是打…
第三关. 问题的解法在于正则表达式. 首先...你应该能找到需要正则的字符在哪里...那就好了! 题意就是说: One small letter, surrounded by EXACTLY three big bodyguards on each of its sides. 在正则的字符里面找到符合要求的字母. 例如:aTTTfTTTz 那么这个f就是需要正则结果到的字母. PS:题目中 EXACTLY :精确的.左右两边是三个大写字母,必须是三个... 代码: #-*- coding:utf…