add KR
CI Check / lint-and-check (push) Failing after 9s

This commit is contained in:
Igor
2026-07-18 23:37:11 +03:00
parent 8cd4a8b928
commit 6a401a35b0
8 changed files with 116 additions and 105 deletions
+8
View File
@@ -0,0 +1,8 @@
if city.lower() == 'moscow':
shipping_cost = 200.0
if total_weight > 5.0:
shipping_cost += (total_weight - 5.0) * 10
if total_price > 5000.0:
shipping_cost = shipping_cost * 0.5
if total_price > 10000.0:
shipping_cost = 0.0