Computer Science, asked by fusionagma, 7 months ago

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 pavithranatarajan855
1

Answer:

r=int(input())

pi=3.14

volume = (4/3)*pi*r*r*r

print(round(volume,2))

Explanation:

Here point value will be rounded using round function ...

Similar questions