write python expression equivalent to the following arithmetic/algebraic expressions
ut+1/2at^2
Answers
Answered by
11
Python Expression:
u * t + (1/2) * a * t ** 2
Answered by
2
Answer:
u*t+1/2*a*t**2
or
u*t+1/2*a*math.pow(t,2)
Explanation:
Similar questions