python
qqq2018
奋意向人生
展开
-
numpy函数探索
array a = np.arange(5,20,2) 返回:列表 参数列表:开始数值,结束数值(左闭右开),步长 full b = np.full(10,3) 作用:构造并填充一个矩阵 返回:矩阵 参数列表:矩阵形状(如(3,4),只写一个数x则为默认(1,x)),填充的数字 stack array = [[1,2,3,4,5], [6,7,8,9,10]] c...原创 2018-11-26 10:54:40 · 123 阅读 · 0 评论 -
python3整型浮点型
python3不会数字溢出?!是的! int:整型都统一成了int,能表示无限大。 python docs这么描述的: These represent numbers in an unlimited range, subject to available (virtual) memory only. float:就是c里的double(能表示到1e+308左右),python do...原创 2019-08-04 20:46:00 · 199 阅读 · 0 评论 -
python map/join
map(function, iterable, …) 将function应用到iterable上 例如map(str,[1,2,3])将得到[“1”,“2”,“3”] str.join(sequence) 将sequence用str连接 例如“—”.join([‘1’,‘2asd’,‘3asc’])会得到1–2asd–3asc ...原创 2019-08-04 22:53:35 · 367 阅读 · 0 评论 -
python可迭代类
class MyIterator(object): def __init__(self, end): self.start = 0 self.end = end def __iter__(self): return self def __next__(self): if self.start < sel...原创 2019-08-08 20:26:21 · 734 阅读 · 0 评论