Display text to the screen (not console) tkinter python

Publicado el: 22 noviembre 2021
en el canal de: 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()


En esta página del sitio puede ver el video en línea Display text to the screen (not console) tkinter python de Duración hora minuto segunda en buena calidad , que subió el usuario TechNerd 22 noviembre 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 268 veces y le gustó 7 a los espectadores. Disfruta viendo!