-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmadlibs.py
More file actions
52 lines (36 loc) · 1.29 KB
/
Copy pathmadlibs.py
File metadata and controls
52 lines (36 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
52
''' SIMPLE GAME NAMED 'MAD LIBS'.
A PHRASAL WORD GAME THAT INVOLVES ONE
ASKING ANOTHER FOR A LIST OF WORDS
TO FILL IN THE BLANKS OF A HIDDEN SENTENCE OR STORY.'''
'''
Here are some colors i took some time to gather up,
you can switch the colors,text,and design in the print intro.
'''
class colors:
black='\033[30m'
red='\033[31m'
green='\033[32m'
orange='\033[33m'
blue='\033[34m'
purple='\033[35m'
cyan='\033[36m'
lightgrey='\033[37m'
darkgrey='\033[90m'
lightred='\033[91m'
lightgreen='\033[92m'
yellow='\033[93m'
lightblue='\033[94m'
pink='\033[95m'
lightcyan='\033[96m'
# Make and intro to your mad libs game using prints....
print(colors.cyan,'________________________ThisGuyCodez_________')
print(colors.red,'_____________________________________________')
print(colors.green,'_______/\\_____/\\_______/\\____|__\\\\___________')
print(colors.green,'______/_L\\_I_/B_\\_____/__\\___|__//___________')
print(colors.green,'_____/____\\_/____\\___/____\\__|_//____________')
print(colors.red,'_____________________________________________')
print(colors.cyan,'______Python_Mad Libs_Game___________________\n\n')
# Next lets get 4 values from the user
# 1.)get the users name, favorite number, adv, and verb
# 2.) concat the inputs together in a sentence
# 3.) print your concat string