create a script to solve the volume of a sphere
output the volume of the sphere.
from math import pi r = float(input('radius of sphere: ')) v = (4/3) * pi * r**3 v = round(v, 3) print(f'volume of sphere: {v}')
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment