Python Membership Operators Presentation


This is the presentation associated with the python membership operators video.

Download Presentation

Python Membership Operators Video Question

This is the Question that was asked in the python membership operators video

Question : Can we check the membership of the integers?
In [ ]:
a = 123456
print(1 in a)

No, because integer is not an iterable.