Urllib.Urlopen Python Challenge

722 Views Asked by At

I've recently started the Python Challenge and the current test requires a code that uses the string 24 characters in to the current page's content. I've come up with some code but cannot figure out why it only progresses to the next URL once, and then gets stuck, any thoughts? I feel I'm missing something very basic here. Thanks for your help.

import urllib
response = urllib.urlopen('http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345')                         #Starting URL

for i in range(10):
x = response.read()[24:]
response = urllib.urlopen('http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing='+str(x))
print "MESSAGE: ", response.read()   #To display all of the page's contents, including information needed to progress to the next URL
1

There are 1 best solutions below

0
On

Should this while loop be working for more than a few minutes?? i've done well until the first sort of checkpoint where they make your loop stumble by not giving another code. Now it's been running again for several minutes since the next code i obtained manually.

Is there a proper way for me to not be 'in the dark' when the loop is working and do receive info about the process of communications as it is working?