Календарь Python - без понедельника - PullRequest
0 голосов
/ 09 мая 2019

У меня есть модуль 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()

1 Ответ

2 голосов
/ 09 мая 2019

По умолчанию текст выравнивается по центру. Таким образом, последний ряд выровнен по центру. Измените его на «левый» оправдать.

import calendar as cd
import tkinter as tk
import calendar
# supply year and month
year = 2019
month = 1   # 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',justify='left')
label1.pack()
# run the event loop (needed)
root.mainloop()

Выход:

Oputput

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...