Python3 遍历列表字典和元组方式总结
Posted 在奋斗的大道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 遍历列表字典和元组方式总结相关的知识,希望对你有一定的参考价值。
# 列表\\字典\\元组 遍历方式
def loop(request):
# 元组遍历方式一:for in
tupe_one = ('1', '2', '3', '4')
for value in tupe_one:
print(value)
# 元组遍历方式二:内置函数enumerate()
tupe_tow = ('1', '2', '3', '4')
for index, value in enumerate(tupe_tow):
print("下标:%s 值:%s" % (str(index), value))
# 元组遍历方式三:使用range()函数
tupe_three = ('1', '2', '3', '4')
for index in range(len(tupe_three)):
print(tupe_three[index])
# 元组遍历方式四: 使用iter()内置函数,返回迭代器对象
tupe_four = ('1', '2', '3', '4')
for value in iter(tupe_four):
print(value)
# 列表遍历方式一:for in
list_one = ('1', '2', '3', '4')
for value in list_one:
print(value)
# 列表遍历方式二:内置函数enumerate()
list_tow = ('1', '2', '3', '4')
for index, value in enumerate(list_tow):
print("下标:%s 值:%s" % (str(index), value))
# 列表遍历方式三:使用range()函数
list_three = ('1', '2', '3', '4')
for index in range(len(list_three)):
print(list_three[index])
# 列表遍历方式四: 使用iter()内置函数,返回迭代器对象
list_four = ('1', '2', '3', '4')
for value in iter(list_four):
print(value)
# 字典遍历方式一:for in
dict_one = {"one": 1, "two": 2, "three": 3}
for value in dict_one:
print("K:%s Value:%d" % (value, dict_one[value]))
# 字典遍历方式二:使用dict的keys()方法
dict_two = {"one": 1, "two": 2, "three": 3}
for key in dict_two.keys():
print("K:%s Value:%d" % (key, dict_two[key]))
# 字典遍历方式三: 使用dict的values()方法
dict_three = {"one": 1, "two": 2, "three": 3}
for value in dict_three.values():
print("value:" + str(value))
# 字典遍历方式四: 使用dict的items()方法
dict_four = {"one": 1, "two": 2, "three": 3}
for item in dict_four.items():
print(item)
# 字典遍历方式五: 使用dict的items()方法,然后直接解包元组
dict_five = {"one": 1, "two": 2, "three": 3}
for key, value in dict_five.items():
print(key + ":" + str(value))
return response_success(message='列表、字典、元组遍历方式验证')
运行结果:
1
2
3
4
下标:0 值:1
下标:1 值:2
下标:2 值:3
下标:3 值:4
1
2
3
4
1
2
3
4
1
2
3
4
下标:0 值:1
下标:1 值:2
下标:2 值:3
下标:3 值:4
1
2
3
4
1
2
3
4
K:one Value:1
K:two Value:2
K:three Value:3
K:one Value:1
K:two Value:2
K:three Value:3
value:1
value:2
value:3
('one', 1)
('two', 2)
('three', 3)
one:1
two:2
three:3
以上是关于Python3 遍历列表字典和元组方式总结的主要内容,如果未能解决你的问题,请参考以下文章