编写Python程序绘制如下图所示的直线,程序空白处应填?( )
import matplotlib.pyplot as p import numpy as np x= np.array([0,1,2,____,4,5]) p.plot(x,'o:r') p.show()
1
2
3
4