Computer Science, asked by kalairaman35, 5 months ago

represent the expression in python
ut+(1/2) at^2

Answers

Answered by RuwaisnZaid
0

Explanation:

Import math

s = u*t+1/2*math.pow(at,2)

print(s)

Answered by Oreki
1

\textsf{\large \textbf{Given Expression}}

    ut + \dfrac{1}{2}at^2

\textsf{\large \textbf{Python Expression}}

    \texttt{u * t + 0.5 * a * t * t}

Similar questions