sklearn实战-乳腺癌细胞数据挖掘(博主亲自录制视频)
https://study.163.com/course/introduction.htm?courseId=1005269003&utm_campaign=commission&utm_source=cp-400000000398149&utm_medium=share
# -*- coding: utf-8 -*-
"""
Created on Sun Dec 24 20:49:39 2017@author: Administrator
"""import requests,bs4,re
url="http://www.klm123.com/channel/74"
begin="http://www.klm123.com"def getLinks(url):res = requests.get(url)soup = bs4.BeautifulSoup(res.text,"lxml")links = []for link in soup.findAll('a', attrs={'href': re.compile("^/video/")}):links.append(begin+link.get('href'))return linkslist_links=getLinks(url)
print( getLinks(url) )
python风控评分卡建模和风控常识
https://study.163.com/course/introduction.htm?courseId=1005214003&utm_campaign=commission&utm_source=cp-400000000398149&utm_medium=share