Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, January 24, 2013

Making a Request



# Codecademy sample solution

from urllib2 import urlopen

# Open http://placekitten.com/ for reading on line 4!
kittens = urlopen('http://placekitten.com/')

response = kittens.read()
body = response[559:1000]

# Add your 'print' statement here!
print(body)

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts