We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af9513 commit 650c83dCopy full SHA for 650c83d
PyGamesScripts/MADLIBS Game/madlibs.py
@@ -1,8 +1,8 @@
1
-import friends, harry_potter
+import friends, harry_potter, ratatouille, avengers #importing all the story templates in this file
2
import random
3
4
5
-m=random.choice([harry_potter,friends])
6
-m.madlib()
+m=random.choice([harry_potter,friends, ratatouille, avengers]) # Choosing a random story template
+m.madlib() # calling its madlib story function
7
8
0 commit comments