Write a python program that calculates and display the volume of a sphere. Ask the user to input the radius of the sphere. ( Volume of sphere = 4 33 )
Answers
Answered by
0
Answer:
pi=22/7
radian = float(input('Radius of sphere: '))
sur_area = 4 * pi * radian **2
volume = (4/3) * (pi * radian ** 3)
print("Surface Area is: ", sur_area)
print("Volume is: ", volume)
Explanation:
In three dimensions, the volume inside a sphere is derived to be V = 4/3*π*r3 where r is the radius of the sphere
pl mark as the brainliest!
Similar questions