Thursday, February 9, 2017

The In Operator

The word in is a Boolean operator that takes two string and returns True if the first appears as a substring in the second:

>>> word = 'hello'
>>> 'e' in word
True
>>> 'l' in word
True

No comments:

Post a Comment