QUESTION IMAGE
Question
the surface area of a sphere is calculated using the formula $surfacearea = (r^2) * 4 * \pi$, where $r$ is the spheres radius.
given variable sphere_radius read from input and constant pi, compute the surface area of a sphere and assign sphere_surface with the surface area.
click here for example
1 pi = 3.14159
2
3 sphere_radius = float(input())
4
5 \\\ your code goes here \\\
6
7 print(f\sphere surface area: {sphere_surface:.2f}\)
Step1: Apply sphere surface area formula
$sphere\_surface = 4 * PI * sphere\_radius^2$
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
sphere_surface = 4 * PI * sphere_radius ** 2