In [7]:
noun = input("choose a name:")
plural_noun = input("Choose a plural noun:")
noun_two = input("Choose a noun again:")
place = input("Name a place:")
adjective = input("Choose an adjective:")
noun_three = input("Choose a noun once again:")
print("----------------------------------")
print("Be nice to your ",noun,"- footed", plural_noun)
print("For a dog will be somebody's",noun_two,",")
print("Be very respectful to your ",plural_noun, "in", place)
print("Where the temperature is always",adjective,",")
print()
print("You might have thought that is this",noun_three,",")
print("Well it is")
print("----------------------------------")
choose a name:Bella Choose a plural noun:she Choose a noun again:place Name a place:Chicago Choose an adjective:nice Choose a noun once again:person ---------------------------------- Be nice to your Bella - footed she For a dog will be somebody's place , Be very respectful to your she in Chicago Where the temperature is always nice , You might have thought that is this person , Well it is ----------------------------------
In [ ]: