mad libs generator python tutorial

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

showing results for - "mad libs generator python tutorial"
Lena
09 May 2018
1print("Mad Lib Generator")
2print("For a good output give a space between the colon symbol")
3print("---------------------------------------------------")
4b = input("Enter a noun:")
5c = input("Enter a Hobby:")
6d = input("Enter a celebrity:")
7print("----------------------------------------------------")
8print("Star Wars is a" + b )
9print("I am a fan of" + d)
10print("My Hobby is" + c)