-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
41 lines (36 loc) · 1.03 KB
/
main.py
File metadata and controls
41 lines (36 loc) · 1.03 KB
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
from CoffeeMachine.main import start as coffee_machine
from CoffeeMachineOOP.main import start as coffee_machine_oop
from QuizGame.main import start as quiz_game
from HirsPainting.main import start as hirs_painting
from TurtleRace.main import start_race as turtle_race
from SnakeGame.main import start as snake_game
from PongGame.main import start as pong_game
from TurtleCrossing.main import start as turtle_crossing_game
print("1. Coffee Machine")
print("2. Coffee Machine OOP")
print("3. Quiz Game")
print("4. Hirs Painting")
print("5. Turtle Race")
print("6. Snake Game")
print("7. Pong Game")
print("8. Turtle Game")
user_option = input("What project do you want to test? (Insert number) ")
match user_option:
case "1":
coffee_machine()
case "2":
coffee_machine_oop()
case "3":
quiz_game()
case "4":
hirs_painting()
case "5":
turtle_race()
case "6":
snake_game()
case "7":
pong_game()
case "8":
turtle_crossing_game()
case _:
print("Bye!")