1

我想将如下获得的字符串转换为datetime

d = feedparser.parse(xmlUrl)
t = datetime.strptime(d.feed.updated, "%Y-%m-%dT%H:%M:%SZ")

注意掩码中的TZ字母。它们可能会丢失,我不确定这种格式还有什么以及如何创建掩码以涵盖所有可能性。

这里的问题是掩码有时匹配,有时不匹配。是否可以进行匹配以始终匹配?

4

1 回答 1

3

You should use the parsed forms of the date fields: feed.updated_parsed contains a struct_time like the one returned by time.gmtime().

于 2012-07-24T09:47:29.653 回答