Educoder Python入门-绘制炸弹轨迹(下)
第3关:绘制一条轨迹3.某轰炸机在h=3km的高空以200m/s的速度水平匀速飞行,到达A点是投下一枚无动力炸弹,不考虑空气阻力,重力加速度g的值取9.8,我们可以通过如下公式得到炸弹在任意时候的位置。import matplotlibmatplotlib.use('Agg')import matplotlib.pyplot as plt #导入matplotlib.pyploth, v0, g = 3000, 200, 9.8n = 30xt, yt = [], []tmax =