python
AmarisEx
Less is more ?
展开
-
Python 爬虫基础教程
Python 爬虫基础教程爬取网页流程选择网址(url)使用 python 登录上这个网址 (urlopen) 等读取网页信息将读取的信息放入 BeautifulSoup使用 BeautifulSoup 选取 tag 信息等(代替正则表达式)了解网页结构<html>,</html><html>,</html><html&g...原创 2020-02-17 10:45:51 · 658 阅读 · 0 评论 -
Matplotlib.pyplot
文章目录Matplotlib.pyplot基本用法figure 图像设置坐标轴Legend 图例Annotation 标注Matplotlib.pyplotmatplotlib.pyplot基本用法import matplotlib.pyplot as pltimport numpy as npx = np.linspace(-1, 1, 50)y = 2*x+1plt.pl...原创 2020-02-16 12:39:04 · 456 阅读 · 0 评论 -
Numpy
文章目录Numpynumpy属性numpy的创建arraynumpy的基本运算numpy的索引numpy array 合并numpy array 分割numpy 的 copy & deep copyNumpynumpy属性import numpy as npimport torcharray = np.array([[1, 2], [3, 4]])print(array.sh...原创 2020-02-15 21:51:47 · 516 阅读 · 0 评论