mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +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") |