Here\'s my code:
import urllib2.request response = urllib2.urlopen(\"http://www.google.com\") html = response.read() print(html)
Any help?
The above didn't work for me in 3.3. Try this instead (YMMV, etc)
import urllib.request url = "http://www.google.com/" request = urllib.request.Request(url) response = urllib.request.urlopen(request) print (response.read().decode('utf-8'))