first group of challenges

This commit is contained in:
abd.shallal
2019-07-17 09:56:46 +03:00
commit 375875c7a1
379 changed files with 107059 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
color = str(input('Enter you favourite colour : '))
if color == 'red':
print('I like red too')
elif color == 'RED':
print('I like red too')
elif color == 'Red':
print('I like red too')
else:
print('I don\'t like {0}, I prefer red'.format(color))