Source Code:
(back to article)
a = [1, 2, 3] b = 2 c = b in a print(c) # Output: True
Result:
Report an issue