How can I round a decimal object to desired decimal position? It seems you have to use some unintuitive expression like:
Decimal('7.325').quantize(Decimal('.01')) why not simply use Decimal('7.325').round(2) or just round(Decimal('7.325'), 2)? -- Hong Yuan 大管家网上建材超市 装修装潢建材一站式购物 http://www.homemaster.cn
-- http://mail.python.org/mailman/listinfo/python-list