python-by-example-150-chall.../challenges12-19/challenge-015.py

8 lines
192 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
color = str(input('Enter you favourite colour : '))
2025-05-26 06:49:34 +08:00
Color = color.capitalize()
if Color == 'Red':
2019-07-17 14:56:46 +08:00
print('I like red too')
else:
print('I don\'t like {0}, I prefer red'.format(color))