Untitled
unknown
python
4 years ago
647 B
51
Indexable
import random
word = input("Write any noun:\n")
template="""There is no correct or incorrect representation of "%s".
You think it's %s, because your parents or your friends told you it's %s or maybe you saw a movie, that shows this word as %s feature or thing,
but there's lots of people, who thinks that it's %s too.
And you need to accept it..."""
if random.randint(0, 1):
print("Good")
adjectives=("Good","bad","bad","bad","good")
else:
print("Bad")
adjectives=("Bad","good","good","good","bad")
ans = input("Is it correct?(y/n):\n")
if ans == "y":
print("As it should be")
elif ans == "n":
print(template%adjectives)Editor is loading...