mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
8 lines
70 B
Python
8 lines
70 B
Python
a = 10
|
|
b = [10, 20, 30]
|
|
|
|
if a in b:
|
|
pass
|
|
|
|
if a not in b:
|
|
pass
|