9 lines
229 B
Python
9 lines
229 B
Python
|
import random
|
||
|
un_nombre = random.randint(1, 500)
|
||
|
if un_nombre > 450:
|
||
|
print("Destruction de l'ordinateur. Cours...vite")
|
||
|
ordinateur.destroy()
|
||
|
else:
|
||
|
print("T'as eu de la chance. Amuse toi bien!")
|
||
|
ordinateur.start()
|