mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
6 lines
178 B
Python
6 lines
178 B
Python
value = 1
|
|
|
|
<caret>if (value >= 1 and value <= 100) or (value >= 200 and value <= 300):
|
|
print("In range 1..100 or 200..300")
|
|
else:
|
|
print("Not in range 1..100 or 200..300") |