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))
|