We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ecb7a8 commit cd055d8Copy full SHA for cd055d8
2 files changed
banner.py
@@ -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
@@ -1,7 +1,10 @@
+import banner
import menu
def start():
+ banner.print_banner()
+
menu.main_menu()
9
10
answer = input('\n > ').lower()
0 commit comments