Reading Web Data From Python 8 试题 1. Which of the following Python data structures is most similar to the value returned in this line of Python: x = urllib.urlopen('http://www.py4inf.com/code/romeo.txt') dictionary regular expression file handle socket list 2. In this Python code, which line actually reads the data? import socket mysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) mysock.connect(('www.py4inf.com', 80)) mysock.send('GET http://www.py4inf.com/code/romeo.txt HTTP/1.0\n\n') while True: data = mysock.recv(512) if ( len(data) < 1 ) : break print data mysock.close()