
Python
文章平均质量分 66
布鲁斯XiaoY
5年+软件测试自动化相关经验,具备丰富的白盒,黑盒以及系统集成经验。
熟悉常用通信协议,应用协议与应用服务部署。
目前对互联网与物联网兴趣颇丰,尤其后者个人认为将是下一个迭代重心。兹从头开始当Newbie,每天进步一点嘿嘿嘿~
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[Python note] Namespaces & scope
NamespacesEverything in Python is an object. A name helps Python to invoke the object that it refer to. A namespace is a space that holds a bunch of names. Imagine it a ‘namespace table’ or a ‘namespa原创 2016-05-26 17:08:30 · 489 阅读 · 0 评论 -
[Python]BS4 与 一个KDS 美图爬虫
BS4BeautifulSoup是用来从HTML or XML中提取数据的Python lib。BeautifulSoup将文档转化为树形结构(DOM),每个节点都是下述四种类型的Python对象: BeautifulSoup <class 'bs4.BeatifulSoup'> Tag <class 'bs4.element.Tag'> NavigableString <class 'bs4.el原创 2016-06-05 00:56:44 · 2527 阅读 · 2 评论 -
[Python]Compare __repr__ & __str__
__repr__, callsed by built-inrepr(), return string representation of a set __str__, called by built-instr() Phython Set - unordered - makes the elements uniqure >>> list = [1,1,2,2,3,3] >>> s原创 2016-08-05 13:46:49 · 646 阅读 · 0 评论