Skip to content
Мастер-классы
Share
Explore
Python

icon picker
Игра "Поймай шарик" в Tkinter

from tkinter import *
root = Tk()

lab = Label(text="Привет всем!", width=20, bg='black', fg='white')

lab.pack()
root.mainloop()

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.