Computer Science, asked by gurjotkaursanghera29, 5 hours ago


Write Python expressions equivalent to the
following awithmetic / algebraic expressions:a+b/2
plz answer according to python program ​

Answers

Answered by Oreki
1

\textsf{\large Given Expression}

   \dfrac{a + b}{2}

\textsf{\large Python Expression}

   \texttt{(a + b) / 2}

Similar questions