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 @@
number = int(input('Enter one of these numbers 1,2,3 : '))
if number == 1:
print('Thank you')
elif number == 2:
print('Well done')
elif number == 3:
print('Correct')
else:
print('Undefiend number')