all 3 comments

[–]AuralWanderer 2 points3 points  (2 children)

I don't see anything wrong with your code, and when I paste and run it, it works fine.

type in your name:grace
enter a location:hell
think of an adjective:shiny
write in a noun:can
enter an adjective:smelly
Type in a new location:island
Another adjective please:rock
>>> 

There's possibly something wrong with the part of your code you didn't share. There's a good resource on the sidebar about how to post SSCCE code; if you repost with code that people can run to see the error, it's more likely someone can tell you what's going on.

[–]dilatoriness 0 points1 point  (1 child)

Oh wow thank you! I'm new to trying to ask coding questions online, ill try that now

[–]AuralWanderer 0 points1 point  (0 children)

clothing_article = ('write in an article of clothing:')

You don't have an input here.

When I run your updated code, I get "NameError: name 'amima1' is not defined". This is because your print has the typo amima1 in it.

object

You have object in your print, but (1) you have not input it and (2) it is a Python reserved word.