第11628题 单选题
编写Python程序绘制给定折线图,补全np.arange()的参数①处应填入的内容是什么?
import numpy as np
from matplotlib import pyplot as plt

x = np.arange(
    ①
)
y = [12,16,17,12,16,17,12]

plt.plot(x, y)
plt.show()

给定折线图

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析