摘要: 正解解析 常用正则表达式回顾: 阅读全文
posted @ 2019-05-09 21:53 Mr_Smith 阅读(1699) 评论(0) 推荐(0)
摘要: #爬取百度翻译结果 import requestsurl = 'https://fanyi.baidu.com/sug' wd = input('enter a word:') data = { 'kw':wd } response = requests.post(url=url,data=data) print(response.json()) #response.text : 字符串 #... 阅读全文
posted @ 2019-05-09 15:21 Mr_Smith 阅读(140) 评论(0) 推荐(0)