Description For this homework, you will write a program that calculates the final price of an order that contains a bag

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

Description For this homework, you will write a program that calculates the final price of an order that contains a bag

Post by answerhappygod »

Description For This Homework You Will Write A Program That Calculates The Final Price Of An Order That Contains A Bag 1
Description For This Homework You Will Write A Program That Calculates The Final Price Of An Order That Contains A Bag 1 (59.14 KiB) Viewed 51 times
Description For This Homework You Will Write A Program That Calculates The Final Price Of An Order That Contains A Bag 2
Description For This Homework You Will Write A Program That Calculates The Final Price Of An Order That Contains A Bag 2 (70.11 KiB) Viewed 51 times
Description For This Homework You Will Write A Program That Calculates The Final Price Of An Order That Contains A Bag 3
Description For This Homework You Will Write A Program That Calculates The Final Price Of An Order That Contains A Bag 3 (56.83 KiB) Viewed 51 times
Description For this homework, you will write a program that calculates the final price of an order that contains a bag of apples and a bag of bananas. (i.e. someone went to a supermarket and bought some apples and bananas) Write a python program that has 4 functions: 1. A function that asks the user to enter the number of fruits in the bag. This function returns whatever number the user entered. 1. This function receives no parameter, but returns the number of fruits 2. A function that calculates the price of the bag of apples 1. This function receives the number of apples in the bag, multiplies by 3 ($3 per apple) and returns the price of the bag of apples 3. A function that calculates the price of the bag of bananas 1. This function receives the number of bananas in the bag, multiplies by 2 ($2 per banana) and returns the price of the bag of bananas

1. This function receives the number of bananas in the bag, multiplies by 2 ($2 per banana) and returns the price of the bag of bananas 4. A function that receives the price of the bag of bananas and the price of the bag of apples and print it all in a friendly manner such as: "Thank you for shopping with us. You bought $? or bananas and $? of apples. Your final bill is $??" (replace ? with whatever the price is) Once you finish writing your functions, you can do the function call • Call the function #1 and get the number of apples in the bag o Receives nothing as parameter Returns the number of fruits in the bag • Call the function #1 again and get the number of bananas in the bag o Receives nothing as parameter o Returns the number of fruits in the bag • Call the function #2 and get the price of the bag of apples o This function receives the number of apples in the bag o This function returns the price of the bag of apples

• Call the function #3 and get the price of the bag of bananas o This function receives the number of bananas in the bag o This function returns the price of the bag of bananas . Call the function #4 and print the final bill o This function receives the price of the bag of banana and the price of the bag of apple as parameters • This function returns nothing Note: • Make sure you have 10/10 on pylint. This is 10% of your grade. No partial grade on this • You are free to modify the functions if you want to. But you must write at least 3 functions. If you do this exercise without using functions you will get zero even though your code might calculate the final price correctly. I am more interested on seeing the functions than anything else • You are free to use global variables if you want
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply