Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Colfax Industries Shipping Boxes Calculator Colfax Industries needs a computer program that allows the shipping clerk to enter the quantity of an item in inventory
Colfax Industries Shipping Boxes Calculator Colfax Industries needs a computer program that allows the shipping clerk to enter the quantity of an item in inventory and quantity that can be packed in a box for shipping. Then, the program must compute and display the total number of boxes required to pack the items and display whether one of these boxes is partially filled box. For example, suppose the item quantity is 125 and the quantity that can be packed in a box is 50. Then, the number of boxes required is three and one is partially filled. (Two boxes with 50 in each plus one partially filled box with 25) Write a complete Python script for this scenario. Take the item quantity and quantity per box as user input and display the required total number of boxes and whether one of them is partially filled. Assume that both quantities are integer values. Save your script "PA1 Question1.py" in cs104PA1 folder. Hints: Assume both quantities are integer. Then, If the item quantity is divisible by quantity per box without a remainder, then, there is no partially filled box and the total number of boxes is equals to, item quantity/quantity per box Otherwise, there is a partially filled box, and the total number of boxes is equals to, (item quantity/ quantity per box) + 1 The user interface of your script may look like as follows (Values in black are user input) Case 1: Colfax Industries Shipping Boxes Calculator Items quantity:125 Quantity per box:50 Required number of boxes:3 Partially filled box: Yes
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started