Output I got = January 01, 2023
But required Output = January 1, 2023
import datetime
import tkinter as tk
from tkcalendar import DateEntry
root = tk.Tk()
root.geometry("380x220")
midate = datetime.date(2020,1,1)
cal1 = DateEntry(root, selectmode='day')
cal1.grid(row=1, column=1, padx=20, pady=30)
def my_upd():
print(cal1.get_date().strftime("%B %d, %Y"))
b1 = tk.Button(root, text='Read', command=lambda:my_upd())
b1.grid(row=2, column=1)
root.mainloop()