Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は日付を持っています
'Apr, 2012'
「mx datetime」オブジェクトに変換したい。
誰かが同じものを変換する方法を教えてもらえますか?
dateutil.parser を使用して、日付を Python の datetime オブジェクトに解析できます。
from dateutil.parser import parse from mx.DateTime import DateFrom date = DateFrom(parse('Apr, 2012'))