python画校庆图代码
时间: 2023-08-27 07:05:09 浏览: 208
以下是使用Python的matplotlib库画校庆图的基本代码:
```python
import matplotlib.pyplot as plt
# 设置字体
plt.rcParams['font.sans-serif'] = ['SimHei']
# 设置数据
years = [2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020]
students = [100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600]
# 绘制折线图
plt.plot(years, students)
# 添加坐标轴标签
plt.xlabel('年份')
plt.ylabel('学生人数')
# 添加标题
plt.title('XX学校校庆图')
# 显示图形
plt.show()
```
你可以根据你的数据和需求进行调整和修改。
阅读全文