Files
2025-09-13 14:39:22 +08:00

9 lines
70 B
Python

a = 10
b = [10, 20, 30]
if a in b:
pass
if a not in b:
pass