Mundo em Python

Programa para ofender

import time

escolha = True
while escolha ==True:
print("Vai-te Foder")
time.sleep(2)

from tkinter import *
root = Tk()
root.geometry("800x200")
root.resizable(0, 0)
root.config(bg="#103030")
root.title("Insultar uma Pessoa")
titulo = Label(text="Insultar uma Pessoa",
font=("Arial", "10", "bold"), bg="#103030", fg="#49e3e3")
titulo.place(relx=0.35, rely=0.05)
texto_sub1 = Label(text="Vai-te FODER ",
font=("Arial", "89", "bold"), bg="#103030", fg="#49e3e3")
texto_sub1.place(relx=0.03, rely=0.32) root.mainloop()
0