enrica dente wrote at 2003-6-2 20:57 +0000: > Does anyone know how to convert a date from format DD/MM/YYYY into format > YYYY/MM/DD using Python in Zope? In a Python Script "convertDate" with parameter "dmy": d,m,y= dmy.split() return '/'.join((y,m,d)) Dieter