-
阶段作业1:完整的中英文词频统计+补交上次作业
-
numpy数据集练习
摘要:import numpy as np l=list(range(10)) a=np.arange(10) b=np.array([a,2*a]) print(type(l),type(a),type(b),type(l[0]),type(a[0]),a.dtype,b.dtype) l.append("xiaodudu") print(l) a.reshape(2,5) ...
阅读全文
-
numpy数组及处理:效率对比
-
10.8统计英文词频
摘要:cc = ('''Counting stars Lately I've been, I've been losing sleep Dreaming 'bout the things that we could be But baby I've been, I've been prayin' hard Said no more counting dollars We'l...
阅读全文
|