()
| 27 | # User may type 1/2/1999 or 1-2-1999 |
| 28 | # To overcome those we have to process user input and make it standard to accept as defined by calender and time module |
| 29 | def printt(): |
| 30 | user_input = user_input1.get() |
| 31 | date = process_date(user_input) |
| 32 | c = "Day on " + user_input + " is " + find_day(date) |
| 33 | label2 = tk.Label(root, text=c, font=("Times new roman", 20), fg="black").place( |
| 34 | x=20, y=200 |
| 35 | ) |
| 36 | |
| 37 | |
| 38 | lbl = tk.Label(root, text="Date --", font=("Ubuntu", 20), fg="black").place( |
nothing calls this directly
no test coverage detected