Skip to content

Commit cd055d8

Browse files
authored
Add files via upload
1 parent 8ecb7a8 commit cd055d8

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

banner.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
def print_banner():
2+
print('\n ######')
3+
print(' # # # # # #### #### ## # # ##### ####')
4+
print(' # # # ## # # # # # # # # # # #')
5+
print(' # # # # # # # # #### # # # # # # ####')
6+
print(' # # # # # # # # # ###### # # ##### #')
7+
print(' # # # # ## # # # # # # # # # # # #')
8+
print(' ###### # # # #### #### # # #### # # ####')

dinosaur.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
import banner
12
import menu
23

34

45
def start():
6+
banner.print_banner()
7+
58
menu.main_menu()
69

710
answer = input('\n > ').lower()

0 commit comments

Comments
 (0)