python 柱状图程序编写
时间: 2023-12-09 15:04:08 浏览: 58
Python版画图程序源码.zip
5星 · 资源好评率100%
以下是一个简单的Python程序,用于绘制柱状图:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y = [10, 24, 36, 40, 50]
# 绘制柱状图
plt.bar(x, y)
# 添加标题和标签
plt.title("Sales Report")
plt.xlabel("Month")
plt.ylabel("Sales")
# 显示图形
plt.show()
```
这个程序使用matplotlib库来绘制柱状图。首先定义了x和y两个列表,分别表示横坐标和纵坐标上的数据。然后,使用plt.bar()函数绘制柱状图。接着,使用plt.title()、plt.xlabel()和plt.ylabel()函数添加标题和标签。最后,使用plt.show()函数显示图形。
阅读全文