matplotlib学习网站(搬运工)
matplotlib学习网站(搬运工)
入门
Matplotlib入门-1-plt.plot( )绘制折线图
- 线段的形状
- 点的类型
分界线
axhline函数--Matplotlib-改变分界线的样式
官方网站
https://www.osgeo.cn/matplotlib/index.html
其他
txt文件处理
文件的读取
with open("9.1 某月温度 .txt","r",encoding="utf-8") as f:
pass
with open("文件路径","读取方法",encoding="编码形式") as f:
操作
行的处理
python中strip(),lstrip(),rstrip()函数的讲解
如果strip()的参数为空,那么会默认删除字符串头和尾的空白字符(包括\n,\r,\t这些)。
描述
Python split() 通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则分隔 num+1 个子字符串
语法
split() 方法语法:
str.split(str="", num=string.count(str)).
参数
- str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
- num -- 分割次数。默认为 -1, 即分隔所有。
y轴错误
- 记得把数据转化成想要的类型