Question: sphere.py > . . . Radius = float ( input ( Enter the radius: ) ) Diameter = 2 * Radius Circumference =

sphere.py >...
Radius=float(input("Enter the radius: "))
Diameter =2* Radius
Circumference =2**3.14** Radius
SurfaceArea =4**3.14** Radius ****2
Volume =43**3.14** Radius ****3
print("Diameter: ", Diameter)
print("circumference:", circumference)
print("Surface Area: ", SurfaceArea)
print("Volume: ", volume)
Why is this code not displaying 6.0 with an input of 3?
 sphere.py >... Radius=float(input("Enter the radius: ")) Diameter =2* Radius Circumference =2**3.14**

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!