Mundo em Python

Dia De Mudança

from tkinter import *
root = Tk()
root.geometry("500x200")
root.resizable(0, 0)
root.title("Dia De Mudança")
root.config(bg="#103030") texto1 =Label(root, text="Dia De Mudança de Hora.",font=("Arial","18","bold"), bg="#103030",fg="#bf9000")
texto1.place(relx=0.17,rely=0.3)
texto2 =Label(root, text="Dia 31 de março, avance uma hora.",font=("Arial","18","bold"), bg="#103030",fg="#bf9000")
texto2.place(relx=0.08,rely=0.6) root.mainloop()
0