write a python program to get the volume of a sphere with radius 6
Answers
Answered by
1
Answer:
# Python Program to find Volume and Surface Area of Sphere
PI = 3.14
radius = float(input('Please Enter the Radius of a Sphere: '))
sa = 4 * PI * radius * radius
Volume = (4 / 3) * PI * radius * radius * radius
print("\n The Surface area of a Sphere = %.2f" %sa)
print("\n The Volume of a Sphere = %.2f" %Volume)
Similar questions
Political Science,
1 month ago
Math,
4 months ago
History,
4 months ago
Political Science,
10 months ago