Sep-22-2024, 03:01 PM
Sep-22-2024, 03:13 PM
Please use the bbtags when posting code.
You should do a quick search on python basic examples.
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')
Sep-22-2024, 05:04 PM
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: \'