标签: jython
请告诉我如何在Jython中以dd-mm-YYYY格式获取系统日期。请注意以下代码未能获取当前日期,原因是错误 ImportError:没有名为datetime的模块
import datetime now = datetime.datetime.now() print print "Current date and time using str method of datetime object:" print str(now) print now.strftime("%d-%m-%Y")