mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
6 lines
145 B
Python
6 lines
145 B
Python
value = 1
|
|
|
|
if (value is None or (1 >= value or value >= 100)) and value != 1:
|
|
print("Not in range 1..100")
|
|
else:
|
|
print("In range 1..100") |