python mad libs

Solutions on MaxInterview for python mad libs by the best coders in the world

showing results for - "python mad libs"
Juan Diego
26 Mar 2020
1Mad Libs in python:
2https://github.com/Sree-creator-123/madlibs
Llewelyn
25 Sep 2018
1print("mad libs game")
2print("fill each below to go to next question after you typed the first one press enter to go to the scond one ")
3
4
5name = input("Enter a name:  ")
6age = input("Enter a age:  ")
7celebrity = input("Enter a celebrity:  ")
8
9print("There once was a man named " + name)
10print("He was "+ age)
11print("He Love "+celebrity)