# Write code to read content from # http://cs1110.cs.virginia.edu/index.html # then (print) display the file content on screen # Be sure to read from the Internet, # do not download the file to your computer import urllib.request url = 'http://cs1110.cs.virginia.edu/index.html' stream = urllib.request.urlopen(url) for line in stream: print(line.decode('UTF-8').strip())