Your favorite restaurant serves 400 customers per week, at an average meal price of 50 dollars. Create the variables customers
and avg_price
with the correct values.
# YOUR CODE HERE
raise NotImplementedError()
### BEGIN TESTS
assert customers == 400
assert avg_price == 50
### END TESTS
It turns out the above information was incorrect. The company actually serves 50 customers per week at 400 dollars per meal. Swap the values of these two variables to reflect the correct information. Finally, run the %whos magic command to confirm the values of your variables.
# YOUR CODE HERE
raise NotImplementedError()
### BEGIN TESTS
assert customers == 50
assert avg_price == 400
### END TESTS
%whos