首页 > 其他 > 详细

The in operator

时间:2014-07-07 15:38:35      阅读:366      评论:0      收藏:0      [点我收藏+]

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:

 bubuko.com,布布扣                      

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

 bubuko.com,布布扣

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

The in operator,布布扣,bubuko.com

The in operator

原文:http://www.cnblogs.com/ryansunyu/p/3815190.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!