Skip to content

Commit

Permalink
update the shipping cost
Browse files Browse the repository at this point in the history
  • Loading branch information
nangaeindray committed Mar 7, 2025
1 parent 717eb6c commit 67efafc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Shipping_Cost_Calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
## Calculate shipping cost
shipping_cost = weight * rate

exchange_rate = 0.91
eur_amount = shipping_cost * exchange_rate

## Display the result
print(f"Shipping Cost: {shipping_cost} USD")

print(f"Shipping Cost in EUR is : {shipping_cost} EUR")

0 comments on commit 67efafc

Please sign in to comment.