Python Visual Basic的CDate等价物

时间:2010-10-19 14:14:46

标签: python com vbscript win32com

我曾经在Visual Basic中使用此代码:

rpt.ParameterFields.GetItemByName("RowDate").AddCurrentValue CDate("2010-03-19")

而且我无法弄清楚我必须将日期换成COM才能食用。

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

好的,找到了解决方案。贝娄是等效的蟒蛇:

rpt.ParameterFields.GetItemByName("RowDate").AddCurrentValue(datetime.datetime.strptime('2010-03-19', "%Y-%m-%d").date())

方法与以下相同: Python date string to date object