Advertisements
Advertisements
Question
The volume of a sphere with radius r is `4/3πr^3`. Write a Python program to find the volume of spheres with radii 7cm, 12cm, and 16cm, respectively.
Solution
Program:
#defining three different radius using variables r1, r2, r3
r1 = 7
r2 = 12
r3 = 16
#calculating the volume using the formula
volume1 = (4/3*22/7*r1**3)
volume2 = (4/3*22/7*r2**3)
volume3 = (4/3*22/7*r3**3)
#printing the volume after using the round function to two decimal places for better readability
print("When the radius is",r1,"cm, the volume of the sphere will be", round(volume1,2),"cc")
print("When the radius is",r2,"cm, the volume of the sphere will be", round(volume2,2),"cc")
print("When the radius is",r3,"cm, the volume of the sphere will be", round(volume3,2),"cc")
OUTPUT:
When the radius is 7 cm, the volume of the sphere will be 1437.33 cc
When the radius is 12 cm, the volume of the sphere will be 7241.14 cc
When the radius is 16 cm, the volume of the sphere will be 17164.19 cc
APPEARS IN
RELATED QUESTIONS
Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):
The sum of 20 and –10 is less than 12.
Write a Python program to convert temperature in degrees Celsius to degrees Fahrenheit. If the water boils at 100 degrees C and freezes at 0 degrees C, use the program to find out what is the boiling point and freezing point of water on the Fahrenheit scale. (Hint: T(°F) = T(°C) × 9/5 + 32)
Write a Python program to calculate the amount payable if money has been lent on simple interest. Principal or money lent = P, Rate of interest = R% per annum and Time = T years. Then Simple Interest (SI) = (P × R × T)/100.
Amount payable = Principal + SI.
P, R, and T are given as input to the program.
Write a program to calculate how many days of work will be completed by three people A, B, and C together. A, B, and C take x days, y days, and z days respectively to do the job alone. The formula to calculate the number of days if they work together is xyz/(xy + yz + xz) days where x, y, and z are given as input to the program.
Write a program to enter two integers and perform all arithmetic operations on them.
Write a program that asks the user to enter their name and age. Print a message addressed to the user that tells the user the year in which they will turn 100 years old.
The formula E = mc2 states that the equivalent energy (E) can be calculated as the mass (m) multiplied by the speed of light (c = about 3 × 108 m/s) squared. Write a program that accepts the mass of an object and determines its energy.
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print(10 + 6 * 2 ** 2 != 9 // 4 - 3 and 29 >= 29/9)
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print(5 % 10 + 10 < 50 and 29 <= 29)