摘要: 数据可视化 import matplotlib.pyplot as plt x_values = range(1, 1001) y_values = [x**2 for x in x_values] plt.style.use('seaborn') fig, ax = plt.subplots() 阅读全文
posted @ 2021-12-21 22:15 风雾里 阅读(75) 评论(0) 推荐(0) 编辑