Computer Science, asked by vaibhavkrishali, 6 months ago

Write following expression in Python:

1. 13 πr2h​

Answers

Answered by Oreki
1

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

   13 \pi r^2h

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

   \texttt{from math import pi}\\\texttt{13 * pi * r * r * h}

Similar questions