Here's a code that do what you want, AFAIU.
It's largely artificial, because it is adapted only to the shape of your precise dictionary.
However, I'm sure it's a basis that could be improved to take account of other specifications, for example several Decimal instances in each tuple.
from decimal import Decimal
rates = {3: [(( 500, 999), Decimal('23425.008'), Decimal(' 4.24245'))],
281: [(( 0, 10), Decimal( '4563.00' ), Decimal(' 34.00' )),
(( 3510, 500), Decimal(' 578' ), Decimal(' 464.503' )),
((174500, 19), Decimal(' 68.2' ), Decimal('5734' ))],
54: [(( 93500, 99999), Decimal(' 1564.44' ), Decimal(' 75.60' ))]}
def complex_display(di):
K,I1,I2,D1B,D1P,D2B,D2P = [],[],[],[],[],[],[]
for key,val in di.iteritems():
K.append(len(str(key)))
for (i,j),d1,d2 in val :
I1.append(len(str(i)))
I2.append(len(str(j)))
d1b,d1p = str(d1).split('.') if '.' in str(d1) else (str(d1),'.')
d2b,d2p = str(d2).split('.') if '.' in str(d2) else (str(d2),'.')
D1B.append(len(d1b))
D1P.append(len(d1p))
D2B.append(len(d2b))
D2P.append(len(d2p))
k = '%%%dd: [' % max(K)
fv = "%%s((%%%ds, %%%ds), Decimal('%%%ds.%%-%ds'), Decimal('%%%ds.%%-%ds'))%%s" % (max(I1),max(I2),max(D1B),max(D1P),max(D2B),max(D2P))
def produce(di):
for key,val in sorted(di.iteritems()):
for n,((i,j),d1,d2) in enumerate(val) :
d1b,d1p = str(d1).split('.') if '.' in str(d1) else (str(d1)[0:-2],"")
d2b,d2p = str(d2).split('.') if '.' in str(d2) else (str(d2)[0:-2],"")
yield fv % (' ' if n else k % key,i,j,d1b,d1p,d2b,d2p,']' if n+1==len(val) else '')
return '\n'.join(produce(di))
result
3: [(( 500, 999), Decimal('23425.008'), Decimal(' 4.24245'))]
54: [(( 93500, 99999), Decimal(' 1564.44 '), Decimal(' 75.60 '))]
281: [(( 0, 10), Decimal(' 4563.00 '), Decimal(' 34.00 '))
(( 3510, 500), Decimal(' 5. '), Decimal(' 464.503 '))
((174500, 19), Decimal(' 68.2 '), Decimal(' 57. '))]
There are not the two characters '{' and '}' , it is a lot of more complexity to add them for a faint result. I let you to complete the code to add them if you want
The result is sorted according the keys.
pprint.pprintwill divide thedictup into lines like that, but it won't do any of the number alignment (which is why this is a comment, not an answer). I think you'll have to write something custom to do it. – agf Oct 4 '11 at 4:04