9 lines
70 B
Python
9 lines
70 B
Python
a = 10
|
|
b = [10, 20, 30]
|
|
|
|
if a in b:
|
|
pass
|
|
|
|
if a not in b:
|
|
pass
|