From aedafc2317b180512ccf40ced40c77656f81f697 Mon Sep 17 00:00:00 2001 From: Abhilash Date: Wed, 23 Apr 2025 20:21:16 +0530 Subject: [PATCH] billing.py --- billing.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 billing.py diff --git a/billing.py b/billing.py new file mode 100644 index 00000000000..c3fff306097 --- /dev/null +++ b/billing.py @@ -0,0 +1,3 @@ +prices = [12.99, 5.49, 8.75] +total = sum(prices) +print(total) \ No newline at end of file