Answer to Question #236954 in Python for Ashkan

Question #236954

Part 1

The volume of a sphere is 4/3πr3, where π has the value of "pi" given in Section 2.1 of your textbook. Write a function called print_volume (r) that takes an argument for the radius of the sphere, and prints the volume of the sphere.

Call your print_volume function three times with different values for radius.

Include all of the following in your Learning Journal:

  • The code for your print_volume function.
  • The inputs and outputs to three calls of your print_volume.

Part 2

Write your own function that illustrates a feature that you learned in this unit. The function must take at least one argument. The function should be your own creation, not copied from any other source. Do not copy a function from your textbook or the Internet.

Include all of the following in your Learning Journal:

  • The code for the function that you invented.
  • The inputs and outputs to three calls of your invented function.
  • A description of what feature(s) your function illustrates. 
1
Expert's answer
2021-09-14T18:21:18-0400

This function illustrates the function which takes one argument and use of pow() function to calculate the power of a number.

from math import pi
def print_volume(r):
    m=pow(r,3)*pi
    n=(4/3)*m
    print(n)
n1=int(input("Enter the first interger: "))
print_volume(n1)
n2=int(input("Enter the second interger: "))
print_volume(n2)
n3=int(input("Enter the third interger: "))
print_volume(n3)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS