Skip to content

Instantly share code, notes, and snippets.

@jezinka

jezinka/4.py Secret

Created July 29, 2017 13:56
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 jezinka/def988f752ddd88251fce0065dc1ec72 to your computer and use it in GitHub Desktop.
Save jezinka/def988f752ddd88251fce0065dc1ec72 to your computer and use it in GitHub Desktop.
import urllib, re
param = str(12345)
while(True):
url = "http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=" + param
page_content = urllib.urlopen(url).read()
print page_content
param = re.findall("nothing is (\d+)", page_content)[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment