模板代码:
import re #python 自1.5版本增加了re模块,它提供了Perl风格的正则表达式模式
print(re.match(www, www.baidu.com).span()) #在起初位置匹配
line "Cats are smarter than dogs"
matchObj re.match( r(.*) are (.*?) .*, line,…
#!/usr/bin/env python
#-*-coding:utf-8-*-
#决策树的建立,训练测试,
from sklearn.feature_extraction import DictVectorizer
import csv
from sklearn import preprocessing
from sklearn import tree
from sklearn.externals.six import StringIO#读…
原题:
Start here if...
Youre new to data science and machine learning, or looking for a simple intro to the Kaggle prediction competitions.
Competition Description
The sinking of the RMS Titanic is one of the most infamous shipwrecks in hist…
from jieba import analyse
print("tfidf: ")
tfidf analyse.extract_tags
text "线程是程序执行时的最小单位,它是进程的一个执行流,\是CPU调度和分派的基本单位,一个进程可以由很多个线程组成,\线程间共享进程…