The in operator

The operators we have seen so far are all special characters like + and *, but there are a few operators that are words. in is a boolean operator that takes two strings and returns True if the first appears as a substring in the second:

                       

For example, the following function prints all the letters from word1 that also appear in word2:

 

With well-chosen variable names, Python sometimes reads like English. You could read this loop, ‘for (each) letter in (the first) word, if (the) letter (appears) in (the second) word, print (the) letter.

 

from Thinking in Python

posted @ 2014-06-29 15:40  平静缓和用胸音说爱  阅读(186)  评论(0编辑  收藏  举报