Last active
October 19, 2015 20:55
-
-
Save kojoidrissa/e72cc1a71975673516a3 to your computer and use it in GitHub Desktop.
Revisions
-
kojoidrissa revised this gist
Oct 19, 2015 . No changes.There are no files selected for viewing
-
kojoidrissa created this gist
May 9, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ 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