In Python, Write a program that has a main() function and a multi value returning function named rspyramid(). The main() function prompts the user to provide two float values used to calculate both Area and Volume of a regular square pyramid, then calls rspyramid() with the user provided values. On the return the main() function should print the surface area and volume accurate to three decimal places. The function rspyramid() takes two values, base edge and height of the regular square pyramid, performs the necessary calculations and returns the two calculated values, surface area and volume. Code must match the example below Enter the base edge of a regular square pyramid: Enter the height regular square pyramid: The surface area is: The volume is: This is the code I have tried... It has a calculation error on the surface area... import math #function to find surface area and volume def rspyramid(edge,height): #find slantheight slantheight=math.sqrt(height*height+edge*edge) #calculate surface area sa=2*edge*slantheight+pow(edge,2) #calculate volume volume=(pow(edge,2)*height)/3 #return surface area and volume return sa,volume #main function def main(): #store the edge input from user e = float(input("Enter the base edge of a regular square pyramid: ")) #store the height input from the user h = float(input("Enter the height of regular square pyramid: ")) #area and volume variables are assigned result from the rspyramid function area,vol = rspyramid(e,h) #print the surface area print("The surface area is ",end="") print("{0:.3f}".format(sa)) #print the volume print("The volume is ",end="") print("{0:.3f}".format(vol)) main() Error code: What am I missing? Test 1: stimulus:: 1, 1 expected: 'The surface area is: 3.236', 'The volume is: 0.333' Line does not match! Line 1 Program Output was |S|The surface area is: 3.828|E| Line 1 Expected Output was |S|The surface area is: 3.236|E| Test 1 FailedE

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

In Python, Write a program that has a main() function and a multi value returning function named rspyramid().

The main() function  prompts the user to provide two float values used to calculate both Area and Volume of a regular square pyramid, then calls rspyramid()  with the user provided values. 

On the return the main() function should  print the surface area and volume accurate to three decimal places. 

The function rspyramid() takes two values, base edge and height of the regular square pyramid, performs the necessary calculations and returns the two calculated values, surface area and volume.

Code must match the example below

Enter the base edge of a regular square pyramid:

Enter the height regular square pyramid:

The surface area is:

The volume is:

This is the code I have tried... It has a calculation error on  the surface area... 

import math

#function to find surface area and volume
def rspyramid(edge,height):
#find slantheight
slantheight=math.sqrt(height*height+edge*edge)

#calculate surface area
sa=2*edge*slantheight+pow(edge,2)

#calculate volume
volume=(pow(edge,2)*height)/3

#return surface area and volume
return sa,volume

#main function
def main():
#store the edge input from user
e = float(input("Enter the base edge of a regular square pyramid: "))
#store the height input from the user
h = float(input("Enter the height of regular square pyramid: "))

#area and volume variables are assigned result from the rspyramid function
area,vol = rspyramid(e,h)

#print the surface area
print("The surface area is ",end="")
print("{0:.3f}".format(sa))

#print the volume
print("The volume is ",end="")
print("{0:.3f}".format(vol))

main()

Error code:  What am I missing? 

Test 1: stimulus:: 1, 1 expected: 'The surface area is: 3.236', 'The volume is: 0.333'
Line does not match!
Line 1 Program Output was |S|The surface area is: 3.828|E|
Line 1 Expected Output was |S|The surface area is: 3.236|E|
Test 1 FailedE

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Returning value from Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education