-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paths1.py
More file actions
31 lines (29 loc) · 1.13 KB
/
s1.py
File metadata and controls
31 lines (29 loc) · 1.13 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
# Music Madlib:
def madlib():
verb1 = input("Verb: ")
verb2 = input("Verb: ")
noun1 = input("Noun: ")
adjective1 = input("Adjective: ")
noun2 = input("Noun: ")
noun3 = input("Noun: ")
adjective2 = input("Adjective: ")
musical_instrument1 = input("Musical_instrument: ")
animal = input("Animal: ")
verb3 = input("Verb: ")
noun4 = input("Noun: ")
verb4 = input("Verb: ")
verb5 = input("Verb: ")
musical_instrument2 = input("Musical_instrument: ")
noun5 = input("Noun: ")
verb6 = input("Verb:")
adjective3 = input("Adjective: ")
noun6 = input("Noun: ")
madlib = f"I like music class because we get to {verb1} \
and {verb2} really loudly.There are all \
sorts of {noun1} to play, like the {adjective1} {noun2} and the {noun3}.My instrument \
is the {adjective2} {musical_instrument1}, which sounds a lot like a {animal}.We are \
learning to {verb3} a song by The {noun4} \
called, 'I {verb4} to {verb5} with You,' \
using {musical_instrument2} and {noun5}.When we all {verb6} together, it sounds like a \
{adjective3} group of {noun6}."
print(madlib)