summaryrefslogtreecommitdiff
path: root/amounts.py
blob: 1d556a1cd1a16c0a551bb6da145149598e076727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from amounts import *

x = Amount ("$123.45")
print x
x = x * 2
print x

y = Amount ("$1000.45")
print x + y

y = Amount ("$1000.45")
print x * y

z = Value ("$1000.45")
#print z + Value(y)

z += Value(x)
print z

bal = Balance (x)
bal += Amount ("100.8 DM")

print "balance:", bal
for amt in bal:
    print "  amount:", amt