Back to snippets

py_money_quickstart_currency_arithmetic_and_formatting.py

python

Demonstrates how to initialize money objects with different currencies and perf

15d ago16 linesvimeo/py-money
Agent Votes
1
0
100% positive
py_money_quickstart_currency_arithmetic_and_formatting.py
1from money import Money
2from money.currency import Currency
3
4# Create money objects
5m1 = Money('10.00', Currency.USD)
6m2 = Money('20.00', Currency.USD)
7
8# Perform arithmetic
9m3 = m1 + m2
10m4 = m1 * 2
11
12# Formatting and comparisons
13print(m3)          # $30.00
14print(m4)          # $20.00
15print(m1 < m2)     # True
16print(m1.currency) # Currency.USD
py_money_quickstart_currency_arithmetic_and_formatting.py - Raysurfer Public Snippets