Python Example – Write a Python program to calculate surface volume and area of a sphere.

(Python Example for Citizen Data Scientist & Business Analyst)

 

Write a Python program to calculate surface volume and area of a sphere.

 

Note: A sphere is a perfectly round geometrical object in three-dimensional space that is the surface of a completely round ball.

Python: Surface volume and area of a sphere

A sphere is a perfectly round geometrical object in three-dimensional space that is the surface of a completely round ball.

In three dimensions, the volume inside a sphere is derived to be V = 4/3*π*r3 where r is the radius of the sphere

The  area of a sphere is A = 4*π*r2

 

Sample Solution:

Python Code:


pi=22/7
radian = float(input('Radius of sphere: '))

sur_area = 4 * pi * radian **2

volume = (4/3) * (pi * radian ** 3)

print("Surface Area is: ", sur_area)
print("Volume is: ", volume)

Sample Output:

Radius of sphere: .75                                                                                         
Surface Area is:  7.071428571428571                                                                           
Volume is:  1.7678571428571428

 

Write a Python program to calculate surface volume and area of a sphere

Sign up to get end-to-end “Learn By Coding” example.



Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.