Skip to main content

volume of sphere and hemisphere in Python | program

 volume of sphere and hemisphere.

  • Volume of hemisphere = 2Ï€r3/3, where 'r' is the radius of the hemisphere.
  • Volume of sphere = 4Ï€r3/3, where 'r' is the radius of the sphere.

Program to find volume of sphere and hemisphere

Input :

enter radius of sphere 4
enter radius of hemisphere 4

Output :

volume of sphere is %.2f 268.08
volume of hemisphere is  134.04

# Program to find volume of sphere and hemisphere
# for pi use pi value as 3.1423 or import math module
from math import*
#Program to find volume of sphere
radius1 = float(input("enter radius of sphere "))
vol_sphere = (4*pi*radius1*radius1*radius1)/3
print("volume of sphere is %.2f",round(vol_sphere,2))
#Program to find volume of hemisphere
radius2 = float(input("enter radius of hemisphere "))
vol_hemisphere = (2*pi*radius2*radius2*radius2)/3
print("volume of hemisphere is ",round(vol_hemisphere,2))
#here round(var,n) is predefined function used to get n digits after point

Output :

enter radius of sphere 4
volume of sphere is %.2f 268.08
enter radius of hemisphere 4
volume of hemisphere is  134.04
> 

Comments

Popular posts from this blog

Day 3: Intro to Conditional Statements | HackerRank | solution in python

Objective In this challenge, we learn about conditional statements. Check out the Tutorial tab for learning materials and an instructional video. Task Given an integer,  , perform the following conditional actions: If   is odd, print  Weird If   is even and in the inclusive range of   to  , print  Not Weird If   is even and in the inclusive range of   to  , print  Weird If   is even and greater than  , print  Not Weird Complete the stub code provided in your editor to print whether or not   is weird. Input Format A single line containing a positive integer,  . Constraints Output Format Print  Weird  if the number is weird; otherwise, print  Not Weird . Sample Input 0 3 Sample Output 0 Weird Sample Input 1 24 Sample Output 1 Not Weird Explanation Sample Case 0:    is odd and odd numbers are weird, so we print  Weird . Sample Case 1: ...

Program to Convert Centimeter to meter and kilometer in python

 Convert Centimeter to meter and kilometer. 1 meter  = 100 centimeters 1 kilometer = 100000 centimeters Read the length in centimeters. use formulae and get the output. check the below code . Program to Convert Centimeter to meter and kilometer Input : enter length in centimeters 100 Output : 100.0 centimeters = 1.0 meters. 100.0 centimeters = 1e-05 kilometers. # program to convert centimeter to meter and kilometer cm = float(input("enter length in centimeters ")) # centimeter to meter meter = 0.01*cm print(cm," centimeters = ",meter," meters.") # centimeter to kilometer km = 0.00001 print(cm," centimeters = ",km," kilometers.") Output : enter length in centimeters 100 100.0 centimeters = 1.0 meters. 100.0 centimeters = 1e-05 kilometers.

Day 0: Hello, World. | HackerRank || Python3

Objective In this challenge, we review some basic concepts that will get you started with this series. You will need to use the same (or similar) syntax to read input and write output in challenges throughout HackerRank. Check out the Tutorial tab for learning materials and an instructional video!  Task  To complete this challenge, you must save a line of input from stdin to a variable, print Hello, World. on a single line, and finally print the value of your variable on a second line. You've got this!   Note:  The instructions are Java-based, but we support submissions in many popular languages. You can switch languages using the drop-down menu above your editor, and the variable may be written differently depending on the best-practice conventions of your submission language.   Input Format  A single line of text denoting (the variable whose contents must be printed).  Output Format   Print Hello, World. on the first line, and ...