@Ding-feng
2017-09-26T21:07:47.000000Z
字数 141
阅读 706
exercise3
from pylab import *
x = [0]
v = 40
t = [0]
dt=0.01
for i in range(1,1000):
t_temp=i*dt
t.append(t_temp)
x_temp=v*t[i]
x.append(x_temp)
plot(x,t)
show()