Try with the following:
from tkinter import *
from tkcalendar import Calendar,DateEntry
root = Tk()
cal = DateEntry(root,width=30,bg="darkblue",fg="white",year=2010)
cal.grid()
root.mainloop()
where tkcalendar
library should be downloaded and installed through pip install tkcalender
command.