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.
我有一个 datetime.datetime 对象。我想做的就是把它的数据拉出来,放到一个列表中。我发现的唯一方法是:
date_list=list(my_dt_ob.timetuple())
这似乎是一种非常复杂的方式来做一个概念上简单的事情。有人有更好的方法吗?谢谢。
日期和时间的每个部分都可用作datetime对象的属性。您可以直接使用它们:
datetime
date_list = [my_dt_ob.year, my_dt_ob.month, my_dt_ob.day, my_dt_ob.hour, my_dt_ob.minute, my_dt_ob.second]