Browse Source

you are an idiot

master
philippot.m 1 week ago
parent
commit
c055f9929c
  1. 50
      mot_de_passe.py

50
mot_de_passe.py

@ -2,6 +2,8 @@ from tkinter import *
from random import randint
from threading import Thread
from time import sleep
from winsound import *
class Visage:
def __init__(self,uncolor,uncanvas,unx,uny,uncoef):
self.c=uncanvas
@ -11,22 +13,12 @@ class Visage:
self.coef=uncoef
###################Création des yeux#############
eye_y=20
self.eye_1_cont=self.c.create_oval(self.x+10+self.coef,
self.y+eye_y,
self.x+30+self.coef,
self.y+eye_y+20,fill="red")
self.eye_1=self.c.create_oval(self.x+10+self.coef,
self.y+eye_y,
self.x+30+self.coef,
self.y+eye_y+20,
fill=self.color)
eye_2_x=40
self.eye_2_cont=self.c.create_oval(self.x+eye_2_x+self.coef,
self.y+eye_y,
self.x+eye_2_x+20+self.coef,
self.y+eye_y+20)
self.eye_2=self.c.create_oval(self.x+eye_2_x+self.coef,
self.y+eye_y,
self.x+eye_2_x+20+self.coef,
@ -49,9 +41,10 @@ class Visage:
width=3)
def change_color(self,color):
lst_oeil_cont=[self.eye_1_cont,self.eye_2_cont]
for eye in range(0,len(lst_oeil_cont)):
self.c.itemconfig(lst_oeil_cont[eye],outline=color)
self.c.itemconfigure(self.sourir,outline=color)
self.c.itemconfigure(self.vis,outline=color)
self.c.itemconfigure(self.eye_1,outline=color)
self.c.itemconfigure(self.eye_2,outline=color)
class Idiot:
def __init__(self,uncolor,uncanvas,unx,uny):
@ -59,14 +52,19 @@ class Idiot:
self.y=uny
self.color=uncolor
self.c=uncanvas
idiot_text=self.c.create_text((225, 10), fill="#000000", text="You are an idiot")
self.fond=self.c.create_rectangle(0,0,455,605)
self.idiot_text=self.c.create_text((225, 15), fill="#000000", text="You are an idiot",font= 'Impact 20')
##########################Création des trois visages###################
self.idiot_1=Visage(self.color,self.c,self.x,self.y,0)
self.idiot_2=Visage(self.color,self.c,self.x,self.y,150)
self.idiot_3=Visage(self.color,self.c,self.x,self.y,300)
def change_color(self,color):
if color=="#ffffff":
self.c.configure(bg="#000000")
else:
self.c.configure(bg="#ffffff")
self.c.itemconfigure(self.idiot_text ,fill=color)
self.idiot_1.change_color(color)
self.idiot_2.change_color(color)
self.idiot_3.change_color(color)
@ -151,30 +149,22 @@ def mot_de_passe_hash(password):
fich_pasw.write(str(hash(password)))
def you_are_an_idiot():
fenetre_cb=Tk()
fenetre_cb.title("You are an idiot")
fenetre_cb.protocol("WM_DELETE_WINDOW",double)
fenetre_cb.grid()
idiot_can=Canvas(fenetre_cb, width=450, height=600,bg="#ffffff")
fenetre_idiot=Tk()
fenetre_idiot.title("You are an idiot")
fenetre_idiot.protocol("WM_DELETE_WINDOW",double)
fenetre_idiot.grid()
idiot_can=Canvas(fenetre_idiot, width=450, height=100,bg="#ffffff")
idiot_can.grid(row=1,column=1)
idiot_var=Idiot("#000000",idiot_can,20,20)
idiot_var=Idiot("#000000",idiot_can,20,30)
idiot_anime=Anim_idiot(idiot_var)
idiot_anime.start()
fenetre_cb.mainloop()
fenetre_idiot.mainloop()
def double():
you_are_an_idiot()
you_are_an_idiot()
def cb_enregistre():
num_cart=num_cb.get()
print(num_cart,num_cb.get())
fich_num_carte=open("numéro_de_carte_bancaire.txt","w")
fich_num_carte.write(str(num_cart))
fenetre=Tk()
fenetre.title("Créateur de mot de passe")
fenetre.configure(bg = "#3356ff")

Loading…
Cancel
Save