Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想根据变化的 t 和变化的 v_0 来计算位置。
这里的这个短程序有什么问题?
#Position from Simple Equation t = input('Time (in seconds)') g = 9.81 v_0 = input('initial velocity') s=-0.5*g*t^2 + v_0*t print s
谢谢你们的帮助。
^运算符 int^2是按位 XOR 运算符。
^
t^2
>>> 3 ^ 3 0
如果您打算使用 power operator,请**改用。
**
>>> 3 ** 3 27