Skip to content

Instantly share code, notes, and snippets.

@JakenHerman
Created February 13, 2014 16:32
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 JakenHerman/8978550 to your computer and use it in GitHub Desktop.
Save JakenHerman/8978550 to your computer and use it in GitHub Desktop.
Phython Challenege 3 Source Code
import urllib
filehandle = urllib.urlopen("http://www.pythonchallenge.com/pc/def/ocr.html")
for lines in filehandle.readlines():
print lines
filehandle.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment