Skip to content

Commit

Permalink
Update Mad Libs Generator.py
Browse files Browse the repository at this point in the history
Comments are now in valid pythonic syntax
  • Loading branch information
Piombacciaio authored Jul 30, 2023
1 parent e23e5e9 commit 6b493d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Mad Libs Generator.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//Loop back to this point once code finishes
#Loop back to this point once code finishes
loop = 1
while (loop < 10):
// All the questions that the program asks the user
# All the questions that the program asks the user
noun = input("Choose a noun: ")
p_noun = input("Choose a plural noun: ")
noun2 = input("Choose a noun: ")
place = input("Name a place: ")
adjective = input("Choose an adjective (Describing word): ")
noun3 = input("Choose a noun: ")
// Displays the story based on the users input
# Displays the story based on the users input
print ("------------------------------------------")
print ("Be kind to your",noun,"- footed", p_noun)
print ("For a duck may be somebody's", noun2,",")
Expand All @@ -18,5 +18,5 @@
print ("You may think that is this the",noun3,",")
print ("Well it is.")
print ("------------------------------------------")
// Loop back to "loop = 1"
# Loop back to "loop = 1"
loop = loop + 1

0 comments on commit 6b493d1

Please sign in to comment.