-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
45 lines (36 loc) · 765 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
from sense_hat import SenseHat
#import os
from code_secret import*
from slug import*
from labyrinthe import*
from space_pet import*
from sparkles import*
from RPG import*
from ping import*
from signature import*
sense=SenseHat()
def a1():
sense.show_message("Code secret.")
code_secret()
def b2():
sense.show_message("Slug.")
Slug()
def c3():
sense.show_message("Labyrinthe.")
labyrinthe()
def d4():
sense.show_message("Animal de compagnie.")
space_pet()
def e5():
sense.show_message("Economiseur d'ecran.")
effet()
def f6():
sense.show_message("RPG.")
RPG()
def g7():
sense.show_message("Ping-pong.")
ping()
def h8():
sense.show_message("Signature.")
signature()