Display text to the screen (not console) tkinter python

Published: 22 November 2021
on channel: TechNerd
268
7

In this video, I will show you how to print text to the screen (not the console)
Here is the program code

import tkinter


label = tkinter.Label(text='just like this', font=('s','120'), fg='red', bg='white')
label.master.overrideredirect(True)
label.master.geometry("+0+0")
label.master.lift()
label.master.wm_attributes("-topmost", True)
label.master.wm_attributes("-disabled", True)
label.master.wm_attributes("-transparentcolor", "white")
label.pack()
label.mainloop()


On this page of the site you can watch the video online Display text to the screen (not console) tkinter python with a duration of hours minute second in good quality, which was uploaded by the user TechNerd 22 November 2021, share the link with friends and acquaintances, this video has already been watched 268 times on youtube and it was liked by 7 viewers. Enjoy your viewing!