tybed = input('Please type (Yes), (No), or (Maybe) \n')
if tybed == 'yes':
print(f'You tybed {tybed}')
elif tybed == 'no':
print(f'You tybed {tybed}')
elif tybed == 'maybe':
print(f'You tybed {tybed}')
else:
print(f'You tybed {tybed}, which is not an option \n please stick to the options')
To embed this project on your website, copy the following code and paste it into your website's HTML: