Code

008_mango_monger.py

## 008_mango_monger.py

mangoes_bought = 100
mango_bying_price = 60
mango_selling_price = 75

mangoes_spoiled = 5
mangoes_sold = mangoes_bought - mangoes_spoiled

profit_per_mango = mango_selling_price - mango_bying_price
profit = mangoes_sold * profit_per_mango

print(f"Profit: ₹{profit}")