Skip to content

Commit 253a558

Browse files
committed
my first project
1 parent 19b331e commit 253a558

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.replit

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language = "bash"
2+
run = ""

madlibs.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#this is only sample of madlib.you can have different statements for it.
2+
adj1=input("enter first adjective:")
3+
adj2=input("enter second adjective")
4+
adj3=input("enter third adjective")
5+
verb1=input("enter first verb")
6+
verb2=input("enter second verb")
7+
noun=input("enter noun")
8+
madlib=f"our school cafteria has really {adj1} food.just thinking about it makes my stomach {verb1}.the spaghetti is {adj2} and tastes like {noun}.one day i swear one of my meatballs started to {verb2}!.the turky tacos are totally {adj3} and look kind of like old {noun}."
9+
print(madlib)

0 commit comments

Comments
 (0)