04 2017 档案

摘要:import urllibimport urllib.requestfrom bs4 import BeautifulSoup""" 1.抓取糗事百科所有纯文本段子 2.保存的本地文件"""class QiuShi(): def ... 阅读全文
posted @ 2017-04-19 18:30 ,,,沙子,,, 阅读(198) 评论(0) 推荐(0) 编辑
摘要:import urllib.requestimport urllib.parseimport json""" 利用“最美天气”抓取即时天气情况 http://www.zuimeitianqi.com/"""class ZuiMei(): ... 阅读全文
posted @ 2017-04-19 18:30 ,,,沙子,,, 阅读(362) 评论(0) 推荐(0) 编辑
摘要:import urllib.requestimport urllib.parseimport jsonclass Translate(): def __init__(self): self.url = 'http://fanyi.y... 阅读全文
posted @ 2017-04-19 18:30 ,,,沙子,,, 阅读(209) 评论(0) 推荐(0) 编辑
摘要:#coding = utf-8'''Created on 2015年5月31日'''def count(*params): '编写一个函数,分别统计出传入字符串参数的英文字符、空格、数字和其它字符的个数' param_count=0 ... 阅读全文
posted @ 2017-04-19 18:29 ,,,沙子,,, 阅读(922) 评论(0) 推荐(0) 编辑
摘要:#coding = utf-8'''Created on 2015年5月30日 author: likui'''def findstr(desStr,subStr): '该函数统计一个子字符在另外一个字符串中出现的次数' des_len=l... 阅读全文
posted @ 2017-04-19 18:29 ,,,沙子,,, 阅读(452) 评论(0) 推荐(0) 编辑