mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
9 lines
160 B
Python
9 lines
160 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
# Is not none
|
|
# If it's not none
|
|
if value is not None:
|
|
print("Not none")
|
|
else:
|
|
print("None") |