tutoriel de générateur de libs fous python

print("Mad Lib Generator")
print("For a good output give a space between the colon symbol")
print("---------------------------------------------------")
b = input("Enter a noun:")
c = input("Enter a Hobby:")
d = input("Enter a celebrity:")
print("----------------------------------------------------")
print("Star Wars is a" + b )
print("I am a fan of" + d)
print("My Hobby is" + c)
Adorable Alpaca