26 Sep
2003
26 Sep
'03
2:25 p.m.
On Fri, 2003-09-26 at 03:14, Stephan Goeldi wrote:
The price part looks like this: 'price' : 22.0}
I'd like to replace it by something, which looks like this in DTML:
<dtml-let a="price/currency"> <dtml-var a fmt="%.0f"> </dtml-let>
I am a total newbie to ZPT and Python, so how can I achieve the above DTML in a Python script?
price = 22.0 formatted_price = '% Of' % price HTH, Dylan