I need help with the following Python 3 question: Suppose you are a bike shop owner who puts together bikes from spare parts. Your customers come to you with parts they’ve found in their garages, from scrap metal heaps, etc., and they ask you to build them all the bikes you can make with the parts they give you. You build the bikes, charge them a big pile of money for the privilege, and keep the leftover parts for yourself. It takes the following parts to create one bicycle:● 2 wheels● 1 frame● 50 links (to make a chain) Write a Python program to calculate how many bikes you can make from the parts the user gives you. You may assume they always give you “good” input, i.e., all whole numbers, and no negatives. Your output can print simply “bikes” or “bike(s)” each time -- don’t worry about singular/plural. Requirements: ● Prompt the user for the # of wheels # of frames they have, and # of links they have. You can use any wording you like, but you must prompt them for the information in that order so we can test your solution.● Report the total number of bikes you can make, and the leftover parts.● Save all of these inputs in well-named variables of correct data types● Do not use any literals in your main function. Any values that need to be saved are in constants variables, initialized at the top of your program, above main. Here is an example output of the program: How many wheels do you have?13 How many frames do you have?4 How many links do you have?150 All totaled up, you've got 3 bikes comingI'm keeping the leftovers for myselfLeftover:7 wheels1 frames0 links >>>

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
icon
Concept explainers
Question

I need help with the following Python 3 question:

Suppose you are a bike shop owner who puts together bikes from spare parts. Your customers come to you with parts they’ve found in their garages, from scrap metal heaps, etc., and they ask you to build them all the bikes you can make with the parts they give you. You build the bikes, charge them a big pile of money for the privilege, and keep the leftover parts for yourself.

It takes the following parts to create one bicycle:
● 2 wheels
● 1 frame
● 50 links (to make a chain)

Write a Python program to calculate how many bikes you can make from the parts the user gives you. You may assume they always give you “good” input, i.e., all whole numbers, and no negatives. Your output can print simply “bikes” or “bike(s)” each time -- don’t worry about singular/plural.

Requirements:

● Prompt the user for the # of wheels # of frames they have, and # of links they have. You can use any wording you like, but you must prompt them for the information in that order so we can test your solution.
● Report the total number of bikes you can make, and the leftover parts.
● Save all of these inputs in well-named variables of correct data types
● Do not use any literals in your main function. Any values that need to be saved are in constants variables, initialized at the top of your program, above main.

Here is an example output of the program:

How many wheels do you have?
13

How many frames do you have?
4

How many links do you have?
150

All totaled up, you've got 3 bikes coming
I'm keeping the leftovers for myself
Leftover:
7 wheels
1 frames
0 links

>>>

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Operators
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