Part 1
The volume of a sphere is 4/3πr3, where π has the value of "pi" given as 3.141592653589793. Write a function called print_volume (r) that takes an argument for the radius of the sphere, and prints the volume of the sphere.
Call your print_volume function three times with different values for radius.
Include all of the following in your Learning Journal:
def sphereVolume(R):
pi = 3.141592653589793
volume = pi * (float(R) ** 3)
print("Sphere volume R =", R, "is", volume)
R = 0
R = input("Enter sphere R: ")
sphereVolume(R)
R = input("Enter sphere R: ")
sphereVolume(R)
R = input("Enter sphere R: ")
sphereVolume(R)
Comments
Leave a comment