#ottit
Membership Operators ( in , not in ) in Python | Python Tutorial in Telugu | ottit.net
in : Returns True if the given value is found
not in :Returns True if the given value not found
x = 10
print(x in (10,20,30))
print(x in (20,30,40))
Returns True if the given value is found
not in
print(x not in (20,30,40))
Print(x not in (10,20,30))
Returns True if the given value not found
Download
0 formats
No download links available.
Python Membership Operators | in not in | Python Tutorial for Beginners in telugu Part 8 | NatokHD