Use in to check Membership : List In : List PYTHON examples


PYTHON examples » List » List In »

 

Use in to check Membership


Use in to check Membership

permissions = 'rw'
print 'w' in permissions

print 'x' in permissions


users = ['mlh', 'foo', 'bar']

print 'foo' in users

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo List
» List In