Coursera课程Python for everyone:Quiz: Reading Web Data From Python

这是一篇关于Coursera上的Python for everyone课程的Quiz,专注于阅读Web数据的练习,包含8道试题。
摘要由CSDN通过智能技术生成

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()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值