10 lines
61 B
Python
10 lines
61 B
Python
a = 10
|
|
b = 10
|
|
|
|
if a is b:
|
|
pass
|
|
|
|
if a is not b:
|
|
pass
|
|
|