如何用python开发图形
答案:1 悬赏:50 手机版
解决时间 2021-11-08 19:11
- 提问者网友:两耳就是菩提
- 2021-11-08 12:41
如何用python开发图形
最佳答案
- 五星知识达人网友:痴妹与他
- 2021-11-08 12:54
给一个简单的代码示例给你
import matplotlib.pyplot as plt
# 绘制折线图
squares = [1, 4, 9, 16, 25]
plt.plot(squares, linewidth=5) # 指定折线粗细,
#plt.show();
#修改标签文字和线条粗细
plt.title("squre number", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("square of value", fontsize=14)
plt.tick_params(axis='both', labelsize=14)
plt.show()
# 校正图形
input_values = [1, 2, 3, 4, 5]
plt.plot(input_values, squares, linewidth=5)
plt.show()
import matplotlib.pyplot as plt
# 绘制折线图
squares = [1, 4, 9, 16, 25]
plt.plot(squares, linewidth=5) # 指定折线粗细,
#plt.show();
#修改标签文字和线条粗细
plt.title("squre number", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("square of value", fontsize=14)
plt.tick_params(axis='both', labelsize=14)
plt.show()
# 校正图形
input_values = [1, 2, 3, 4, 5]
plt.plot(input_values, squares, linewidth=5)
plt.show()
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯