1 answer:
Answer:
item = "quesadilla"
meat = "steak"
queso = False
guacamole = False
double_meat = False
base_price = 4.5
if item == "quesadilla":
base_price = 4.0
elif item == "burrito":
base_price = 5.0
if meat == "steak" or meat == "pork":
base_price += 0.50
if meat == "steak" and double_meat:
base_price += 1.50
elif meat == "pork" and double_meat:
base_price += 1.50
elif double_meat:
base_price += 1.0
if guacamole:
base_price += 1.0
if queso and item != "nachos":
base_price += 1.0
print(base_price)
Explanation:
Use a conditional statement to check if meat is steak or pork then add 0.50 to base_price
. Check if the meat is steak or pork, then double_meat adds 1.50 or 1.0 otherwise
.
Check if meat is steak and its double_meat
, then add 1.50 and if its for guacamole, then add 1.00 to base_price
. If queso is there and item is not nachos, add 1.00 to base_price
. Finally when item is nachos, no need to add any money to base_price
.
You might be interested in
Answer:
Router
Explanation:
The others are not related to internet per se.
Guess is a string. By default the input function returns string types.
Answer:
Procurement
Explanation:
Characteristics hardware lifecycle:
Procurement- Acquiring new IT hardware assets involves evaluating vendors, purchase orders, receiving, and device labeling. Deployment - Hardware configuration and installment, placing hardware and software assets into production environments. Maintenance & Support - Management of assets include scheduling scans and getting audit history. Upgrade - Before you retire your IT hardware assets, you’ll reach a processing plateau that can be restored with hardware upgrades.
What is the context of the question? With all that you have provided my best guess would be "computational function/solving"