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.
我正在使用以下代码作为日期。我需要添加日期时间。我怎样才能做到这一点?
ent_date_time = DateEntry(self.frame2, locale='en_US', date_pattern='y-mm-dd)
从我所见,使用 Tkinter 的 DateEntry 获取当前时间是不可能的。
但是,您可以使用该datetime.now()函数来获取当前日期和时间。观察:
datetime.now()
>>> from datetime import datetime >>> print(datetime.now()) 2020-12-22 22:51:26.223754