
Coursera|Python for Everybody
我是蓝银草
这个作者很懒,什么都没留下…
展开
-
Using Python to Access Web Data quiz3
1.What do we call it when a browser uses the HTTP protocol to load a file or page from a server and display it in the browser?DInternet Protocol (IP)DECNETSMTPIMAPThe Request/Response Cycle1 分...原创 2019-08-31 18:18:37 · 1918 阅读 · 0 评论 -
Using python to access web data quiz5
1.第1个问题What is the name of the Python 2.x library to parse XML data?xml-miscxml2xml.etree.ElementTreexml.jsonC2.第 2 个问题What is the method to cause Python to parse XML that is stored in a strin...原创 2019-09-29 16:23:21 · 5075 阅读 · 0 评论 -
Using python to access web data week5 Assignment
import urllib.request,urllib.parse,urllib.errorimport xml.etree.ElementTree as ETurl=input('Enter location: ')print('Retrieving',url)uh=urllib.request.urlopen(url)data=uh.read()print('Retrieved...原创 2019-09-29 17:03:12 · 763 阅读 · 0 评论 -
Coursera | Using python to access web data quiz6
第一次1.第 1 个问题Who is credited with the REST approach to web services?Bjarne StroustrupRoy FieldingLeonard KlienrockDaphne KollerVint Cerf1 分答案:Roy Fielding2.第 2 个问题What Python library do you ...原创 2019-10-04 20:29:55 · 18849 阅读 · 0 评论 -
Coursera | Using python to access web data week6 Assignments
Assignment1import urllib.request,urllib.parse,urllib.errorimport jsonsum,count=0,0url=input('Enter location:')print('Retrieving',url)uh=urllib.request.urlopen(url)data=uh.read().decode()print...原创 2019-10-04 23:07:55 · 1232 阅读 · 5 评论