calculator.py python
6 lines 179 B
Raw
sha256:5472be4fece32b606c308fad9d57295ce327955fb2b87b8beec6ea1626050473 Add published YouTube URL to Episode 00 Sonnet 5 1 hour ago
1 def calculate_total(items):
2 return sum(item["price"] for item in items)
3
4 if __name__ == "__main__":
5 cart = [{"price": 10}, {"price": 15}]
6 print(calculate_total(cart))
File History 1 commit
sha256:5472be4fece32b606c308fad9d57295ce327955fb2b87b8beec6ea1626050473 Add published YouTube URL to Episode 00 Sonnet 5 1 hour ago