ShareCopy to ClipboardRawPreviewfrom math import pi def surface_area_sphere(radius: float) -> float: return 4 * pi * radius ** 2 Surface Area Sphere00HarigovindV10PythonSurfaceAreaSphereHGV Public CookbookFunction to compute the surface area of a sphere.0 CommentsAdd CommentLog in to add a comment