Interface Gráfica com Python - (Tkinter) #2

Published: 27 October 2022
on channel: Universo Ciência
27
5

Aprenda criar interface gráfica com Python, de maneira simples!

Código fonte:

from tkinter import *

interface = Tk()
interface.title('Interface Gráfica')
interface.geometry('600x600+200+100')
interface.resizable(False, True)

titulo = Label(interface, text = 'TITULO DA PAGINA')
titulo.grid(row = 0, column = 1)

subt = Label(interface, text = 'SUBTITULO')
subt.grid(row = 1, column = 1)

#titulo.pack()

interface.mainloop()


On this page of the site you can watch the video online Interface Gráfica com Python - (Tkinter) #2 with a duration of hours minute second in good quality, which was uploaded by the user Universo Ciência 27 October 2022, share the link with friends and acquaintances, this video has already been watched 27 times on youtube and it was liked by 5 viewers. Enjoy your viewing!