Python Forum
how can you make a question have more than one awnser
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how can you make a question have more than one awnser
#1
print("Do you like christmas")
likes_christmas = input()
if likes_christmas == "Yes":
Reply
#2
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')
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
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: \'
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  newbie question - can't make code work tronic72 2 1,461 Oct-22-2023, 09:08 PM
Last Post: tronic72
  so im trying to make a question game for school and im trying to make it when some on dertder25t 1 2,078 Jan-27-2020, 10:44 PM
Last Post: woooee

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020