We can use variables to solve problems like those we might solve in a spreadsheet. Imagine that you had a spreadsheet with an invoice for an office supply company.
Here’s a program to compute the total price for the invoice:
There are three variables per line, two lines, and one total.
5
There are three variables per line, two lines, and one total.
2
There are three variables per line, two lines, and one total.
We don’t really have to create new variables quantity2 and unitPrice2. We only use those to compute the total for the line, and then we could reuse those variable names.
That would work, but giving names to numbers makes code easier to understand.
Checkpoint14.9.7.
Write the code to calculate and print how many paperclips you can buy if each paperclip is $0.05 and you have $4.00 in your pocket. It should print 80.
Create variables to hold each value. Calculate numPaperclips as budget / costPerClip. Be sure to print the result.
There is a hint available below. It doesn’t give the full answer, you will have to replace all of the ???’s in it with different values.
Hint.
# 1. DECLARE VARIABLES AND ASSIGN VALUES
costPerClip = ???
budget = ???
# 2. CALCULATE RESULT
numPaperclips = ??? / ???
# 3. PRINT RESULT
print(???)