Python Forum

Full Version: how can you make a question have more than one awnser
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
print("Do you like christmas")
likes_christmas = input()
if likes_christmas == "Yes":
Please use the bbtags when posting code.

You should do a quick search on python basic examples.

print('Do you like Christmas?')

question = input('>> ')

if question in ['yes', 'Yes', 'y']:
    print(question)
else:
    print('ok')
Maybe like this:

print("Do you like christmas?")
answers = ['Love it', 'Hate it', 'Don\'t care', 'Sometimes']
print('Possible answers:', answers)
likes_christmas = input('Choose an answer from the above ... ')
while not likes_christmas in answers:
    print('Possible answers:', answers)
    likes_christmas = input('Choose an answer from the above ... ')
PS You need to "escape" the ' in Don't like this: \'