Fork me on GitHub
摘要: 基础数据类型 Number(数字) String(字符串) List(列表) Tuple(元组) Set(集合) Dictionary(字典) 六个标准数据类型中: **不可变数据(3 个):**Number(数字)、String(字符串)、Tuple(元组); **可变数据(3 个):**List 阅读全文
posted @ 2021-06-17 22:29 ZTianming 阅读(115) 评论(0) 推荐(0)
摘要: Python matplotlib 需要安装matplotlib、numpy等模块 基础语法 import matplotlib.pyplot as plt # 设置标题 plt.title('AAPL stock price change') #设置图例 plt.legend() # 设置坐标轴标 阅读全文
posted @ 2021-06-17 22:22 ZTianming 阅读(136) 评论(0) 推荐(0)