RUVIDEO
Поделитесь видео 🙏

GUI calendar using#tkinter #python

# import all methods and classes from the tkinter

from tkinter import *

# import calendar module

import calendar

# Function for showing the calendar of the given year

def showCal() :


# Create a GUI window

new_gui = Tk()



# Set the background colour of GUI window

new_gui.config(background = "white")


# set the name of tkinter GUI window

new_gui.title("CALENDAR")


# Set the configuration of GUI window

new_gui.geometry("550x600")


# get method returns current text as string

fetch_year = int(year_field.get())


# calendar method of calendar module return

# the calendar of the given year .

cal_content = calendar.calendar(fetch_year)


# Create a label for showing the content of the calendar

cal_year = Label(new_gui, text = cal_content, font = "Consolas 10 bold")


# grid method is used for placing

# the widgets at respective positions

# in table like structure.

cal_year.grid(row = 5, column = 1, padx = 20)



# start the GUI

new_gui.mainloop()



# Driver Code

if __name__ == "__main__" :


# Create a GUI window

gui = Tk()



# Set the background colour of GUI window

gui.config(background = "white")


# set the name of tkinter GUI window

gui.title("CALENDAR")


# Set the configuration of GUI window

gui.geometry("250x140")


# Create a CALENDAR : label with specified font and size

cal = Label(gui, text = "CALENDAR", bg = "dark gray",

font = ("times", 28, 'bold'))


# Create a Enter Year : label

year = Label(gui, text = "Enter Year", bg = "light green")



# Create a text entry box for filling or typing the information.

year_field = Entry(gui)


# Create a Show Calendar Button and attached to showCal function

Show = Button(gui, text = "Show Calendar", fg = "Black",

bg = "Red", command = showCal)


# Create a Exit Button and attached to exit function

Exit = Button(gui, text = "Exit", fg = "Black", bg = "Red", command = exit)



# grid method is used for placing

# the widgets at respective positions

# in table like structure.

cal.grid(row = 1, column = 1)


year.grid(row = 2, column = 1)


year_field.grid(row = 3, column = 1)


Show.grid(row = 4, column = 1)


Exit.grid(row = 6, column = 1)



# start the GUI

gui.mainloop()

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «GUI calendar using#tkinter #python», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.