first group of challenges
This commit is contained in:
7
challenges12-19/challenge-018.py
Normal file
7
challenges12-19/challenge-018.py
Normal file
@@ -0,0 +1,7 @@
|
||||
number = int(input('Enter number : '))
|
||||
if number < 10:
|
||||
print('too low')
|
||||
elif 10 <= number < 20:
|
||||
print('Correct')
|
||||
else:
|
||||
print('Too high')
|
Reference in New Issue
Block a user