欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

python创建与遍历List二维列表的方法

时间:2020-11-17 00:34:44|栏目:Python代码|点击:

python 创建List二维列表

lists = [[] for i in range(3)] # 创建的是多行三列的二维列表
for i in range(3):
  lists[0].append(i)
for i in range(5):
  lists[1].append(i)
for i in range(7):
  lists[2].append(i)
print("lists is:", lists)
# lists is: [[0, 1, 2], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4, 5, 6]]

使用二维列表索引遍历二维列表

•注意python中二维列表和matlab以及C和JAVA中一样,不需要每行中列的数量相等

sum_0 = 0
for i in range(len(lists)):
  for j in range(len(lists[i])):
    print(lists[i][j])
    sum_0 += lists[i][j]
print("The sum_0 of Lists:", sum_0)

# 0
# 1
# 2
# 0
# 1
# 2
# 3
# 4
# 0
# 1
# 2
# 3
# 4
# 5
# 6
# The sum of Lists: 34

使用二维列表句柄遍历二维列表

sum_1 = 0
for i in lists:
  for j in i:
    sum_1 += j

print("The sum_1 of Lists:", sum_1)
# The sum_1 of Lists: 34

总结

上一篇:pyqt4教程之实现windows窗口小示例分享

栏    目:Python代码

下一篇:python GUI库图形界面开发之PyQt5信号与槽多窗口数据传递详细使用方法与实例

本文标题:python创建与遍历List二维列表的方法

本文地址:http://www.codeinn.net/misctech/23230.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有