摘要: abs(x):返回一个数字的绝对值,可以是整形也可以是浮点型。all(iterable):返回True,如果所以迭代对象的元素为true,或者可迭代对象为空。any(iterable):如果可迭代对象中的任何元素为true返回True,可迭代对象为空,返回Falseascii(object):返回一... 阅读全文
posted @ 2015-09-29 21:43 --砖头-- 阅读(189) 评论(0) 推荐(0)
摘要: Being educated under Java background, static method and class method are the same thing.But not so in Python, there is subtle difference:Sayfunction a... 阅读全文
posted @ 2015-09-23 22:22 --砖头-- 阅读(386) 评论(0) 推荐(0)
摘要: 做爬虫抓取网页,print(html)进行调试,遇到UnicodeEncodeError:'gbk' codec can't encode character XX in position XX问题,颇为恼火。原因已查明:网页是utf-8编码形式,抓取后response.read().decode(... 阅读全文
posted @ 2015-09-16 00:20 --砖头-- 阅读(351) 评论(0) 推荐(0)