{"id":23001,"date":"2021-09-29T20:13:13","date_gmt":"2021-09-29T14:43:13","guid":{"rendered":"https:\/\/python-programs.com\/?p=23001"},"modified":"2021-11-22T18:35:37","modified_gmt":"2021-11-22T13:05:37","slug":"python-program-to-calculate-volume-and-surface-area-of-hemisphere","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-calculate-volume-and-surface-area-of-hemisphere\/","title":{"rendered":"Python Program to Calculate Volume and Surface Area of Hemisphere"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Calculate Volume of Dodecahedron<\/a>
\nGiven the radius value of the hemisphere, the task is to find the Volume and Surface Area of the given Hemisphere in Python.<\/p>\n

Hemisphere:<\/strong><\/p>\n

It is the precise half of a sphere in geometry. Many real-life examples of hemispheres may be found, such as our planet Earth, which is divided into two hemispheres, the southern and northern hemispheres.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Radius of Hemisphere = 7<\/pre>\n

Output:<\/strong><\/p>\n

The Surface Area of the Hemisphere with radius { 7 } is = 307.8760800517997\r\nThe Volume of the Hemisphere with radius { 7 } is = 718.377520120866<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Radius of Hemisphere = 8<\/pre>\n

Output:<\/strong><\/p>\n

The Surface Area of the Hemisphere with radius { 8 } is = 402.1238596594935
\nThe Volume of the Hemisphere with radius { 8 } is = 1072.330292425316<\/p>\n

Program to Calculate Volume and Surface Area of Hemisphere<\/h2>\n

Below are the ways to Calculate the Volume and Surface Area of the Hemisphere in Python.<\/p>\n