mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
8 lines
140 B
Python
8 lines
140 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
<caret>if value is None:
|
|
print("None")
|
|
# Is not none
|
|
else:
|
|
print("Not none") |