sqlalchemy.exc.CompileError: (in table 'language_label', column 'name'): VARCHAR requires a length o
摘要:
to 阅读全文
摘要:
# encoding=utf8 from sklearn.cluster import KMeans from sklearn.datasets import load_digits, fetch_20newsgroups, make_blobs from sklearn.feature_extraction import DictVectorizer from sklearn.feature_... 阅读全文
摘要:
原理是把列表转换成集合求交集与非交集 阅读全文
摘要:
import re a='abbbbcccc' b=re.sub('c+','c',a)#把a中重复的c无论多少个都显示一个 print(b) c=re.sub('b+','b',b) #把b中重复的c无论多少个都显示一个 print(c) 阅读全文