For some reason the console only displays the first letter of what the reader inputs. Why is this happening?
Here is the code:
print ('Welcome to MadLibs')
string1 = input('Noun')
string2 = input('Plural Noun')
string3 = input('Noun')
string4 = input('Place')
string5 = input('Adjective')
string6 = input('Noun')
string='Be kind to your {}-footed {} For a duck may be somebody\'s {}, Be kind to your {} in {} Where the weather is always {}. You may think that this is the {}, Well it is.'
print(string.format(*string1,string2,string3,string4,string5,string6))