Answers for "Program to calculate the volume of sphere python"

0

Program to calculate the volume of sphere python

radius=48.
pie=3.14285714286.
volume=(4.0/3.0)*pie*(radius*radius*radius)
print("volume of the sphere="+str(volume))
Posted by: Guest on March-03-2022

Code answers related to "Program to calculate the volume of sphere python"

Python Answers by Framework

Browse Popular Code Answers by Language