How to get the selected date for DateEntry in tkcalendar (Python)?
I have a tkcalendar and it's pre-defined widget for Calendar, DateEntry and am trying to get the User's selected date for DateEntry. Whereas there is provision to extract the selected date for the Calendar widget using "selection_get()" but nothing for DateEntry that I could find. I have tried get_date(),get(),_date(), cget(), ._selection() amongst many others but they don't seem to return/print the user-selected date. Please help, kindly let me know if any added information is needed Code [picked from a simple tkcalendar tutorial]: import tkinter as tk from tkinter import ttk from tkcalendar