Добавить
Уведомления

labels in python

this is how to make a label in python in 4 lines of code the code is :from tkinter import * #imports tkinter library root = Tk() #defines the tkinter variable L1 = Label(root, text = "hello world") #defines the label L1.pack() #put the label on the screen

Иконка канала Введение в Python
4 подписчика
12+
2 года назад
12+
2 года назад

this is how to make a label in python in 4 lines of code the code is :from tkinter import * #imports tkinter library root = Tk() #defines the tkinter variable L1 = Label(root, text = "hello world") #defines the label L1.pack() #put the label on the screen

, чтобы оставлять комментарии