mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
9 lines
61 B
Python
9 lines
61 B
Python
a = 10
|
|
b = 10
|
|
|
|
if a is b:
|
|
pass
|
|
|
|
if a is not b:
|
|
pass
|
|
|