print("Feliz 2024!!")
from tkinter import *
root = Tk()
root.title("Feliz Ano Novo!")
message_label =Label(
root,
text="Feliz Ano Novo! \nDesejamos um ano novo\n "
"repleto de alegria, saúde e sucesso.",
font=("Arial", 24, "bold"),
bg="#0b4b52",
fg="#22f2b7",
)
message_label.place(relx=0.05,rely=0.15)
root.geometry("600x200")
root.config(bg="#0b4b52")
root.mainloop()
# Contagem regressiva
import time
for i in range(10, 0, -1):
time.sleep(1)
print(i)
time.sleep(1)
print("FELIZ ANO NOVO 2024!!!")