Computer Science, asked by kanisharchueck, 8 months ago

write python expression equivalent to the following arithmetic/algebraic expressions
ut+1/2at^2

Answers

Answered by Oreki
11

Python Expression:

u * t + (1/2) * a * t ** 2

Answered by mnvibhath
2

Answer:

u*t+1/2*a*t**2

      or

u*t+1/2*a*math.pow(t,2)

Explanation:

Similar questions