0
Write a Program to check whether the given number is in between 1 to 100
Can u solve this question python program
11 Respostas
+ 4
Jan Markus yeah... finally your solution is a good one.
If Sai Eshwar understands there will be some learning.
+ 3
Jan Markus đđđ
+ 2
Jan Markus feel freeđ
+ 1
Hint :- Just use "in" operator and range()
0
Thank u guys for explaining me I got my answer
0
s=int(input())
print(s in range(1,101))
0
numb = int(input ())
If numb in list(range(1,101)):
print ('number is between 1 to 100')
else :
print ('number is not between 1 to 100')
0
0
đđđ
0
hhbhgggfgff