+ 2
How make math operator "between" in python
4 Respuestas
+ 7
# the parenthesis below is just for code clarity
if (1 <= a <= 10):
print('a is between 1 and 10 now')
+ 6
if u tell me detail I will try to solve it
+ 3
if a >= 1 and a <= 10:
+ 1
if a = between 1 and 10: