The volume of a sphere is 4/3πr3, where π has the value of "pi" given in Section 2.1 of your textbook. 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:
from math import pi
def print_volume(r):
V=(4/3)*pi*r*r*r
print(f"The volume of a sphere with radius {r} is: {V}")
print_volume(10)
print_volume(5)
print_volume(2)
Comments
Leave a comment