每天一点Python——day31

#第三十一天
#列表元素的查询操作
'''
判断指定元素在列表中是否存在
语法结构
元素 in 列表名【元素在列表中】
元素  not in 列表名【元素不在列表中】
'''#例
#x先回顾以前知识
print('p' in 'python')#判断p是否存在于python中,结果为True
print('k' not in 'python')#判断k是否不存在于python中,结果为True
lst=[10,20,'python','hello']
print(10 in lst)#10存在于列表中,为True
print(100 in lst)#100不存在于列表中,为False
print(10 not in lst)
print(100 not in lst)
#遍历列表中的元素
'''
遍历:将列表中的元素依次输出【我们可以使用for in 循环】
语法结构:
for 迭代变量 in 列表名
可迭代变量有字符串和列表【目前所学到的】
'''#例
for item in lst:
    print(item)#从lst列表中依次取出元素变量赋值给item,然后输出item然后就会依次输出

你可能感兴趣的:(每天一点Python,python)