У меня есть модуль Python Calendar, который я вставляю в Tkinter и показываю его.Есть одна проблема;в May, 2019
: 27-го понедельника нет ... Это выглядит как
Su 26 / Mo (nothing) / Tu 27
В чем может быть проблема, пожалуйста?
Это код
#as simple monthly calendar with Tkinter
# give calendar and Tkinter abbreviated namespaces
import calendar as cd
import tkinter as tk
# supply year and month
year = 2019
month = 5 # jan=1
# assign the month's calendar to a multiline string
str1 = cd.month(year, month)
# create the window form and call it root (typical)
root = tk.Tk()
root.title("Monthly Calendar")
# pick a fixed font like courier so spaces behave right
label1 = tk.Label(root, text=str1, font=('courier', 14, 'bold'), bg='yellow')
label1.pack(padx=3, pady=5)
# run the event loop (needed)
root.mainloop()