for循环innot in
Posted 萌萌哒小强儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环innot in相关的知识,希望对你有一定的参考价值。
for循环可以遍历集合中任意一个元素
1 a = ["hello", "world", "dlrb"] 2 for b in a: 3 print(b)
我们定义了一个集合a,通过for循环指定变量b遍历集合a,最后print变量b输出集合中的所有元素
输出结果:
hello
world
dlrb
或者使用for循环输出字符串中的每个元素:
1 a = "dlrb" 2 for b in a: 3 print(b)
输出结果:
d
l
r
b
我们还可以通过几种方法查找某个元素是否在集合中:
1 a = ["hello", "world", "dlrb"] 2 b = "dlrb" 3 if b in a: 4 print("yes") 5 else: 6 print("no")
我们定义了一个集合a,定义了一个变量b,我们查找变量b所代表的字符串是否在集合a内,输出结果:
yes
not in的就是元素不在里面,用法都是一样的
1 a = ["hello", "world", "dlrb"] 2 b = "dlrb" in a 3 print(b)
我们定义了一个集合a,定义了一个变量b是一个判定语句:“dlrb”在集合a里面,根据结果会返回True或者False,输出结果:
True
同样for循环中可以插入if、esle语句
1 a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] 2 for b in a: 3 if b%2 == 0: 4 print(b) 5 else: 6 pass
我们定义了一个集合a:里面是整数,我们想要输出集合a中的所有偶数,输出结果:
2 4 6 8 10
以上是关于for循环innot in的主要内容,如果未能解决你的问题,请参考以下文章
sql语句中使用innot in 查询时,注意条件范围中的null值处理事项
c_cpp 这个简单的代码片段显示了如何使用有符号整数在C中完成插值。 for()循环确定要插入的范围