0

将 tkcalendar 与 python 一起使用时,如何更改 get_date 结果的格式?例如,我得到 YYYY-MM-DD。我希望结果是这样的 ISO 格式:YYYY-MM-DDTHH:MM:SS

下面是我的代码:

def showdate():
    messagebox.showinfo("your date is ", ent.get_date())
    print(ent.get_date())
mylabeldate=Label(header_frame,text="select an experation date ")
mylabeldate.grid(row=2,column=0)
ent=DateEntry(header_frame)
ent.grid(row=3,column=0)
mybuton=Button(header_frame,text="click me ",command=showdate)
mybuton.grid(row=4,column=0)
4

0 回答 0