时间:2021-05-23
1. 使用输入值初始化列表
nums = []rows = eval(input("请输入行数:"))columns = eval(input("请输入列数:"))for row in range(rows): nums.append([]) for column in range(columns): num = eval(input("请输入数字:")) nums[row].append(num)print(nums)输出结果为:
请输入行数:3
请输入列数:3
请输入数字:1
请输入数字:2
请输入数字:3
请输入数字:4
请输入数字:5
请输入数字:6
请输入数字:7
请输入数字:8
请输入数字:9
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
2. 使用随机数初始化列表
import randomnumsList = []nums = random.randint(0, 9)rows = random.randint(3, 6)columns = random.randint(3, 6)for row in range(rows): numsList.append([]) for column in range(columns): num = random.randint(0, 9) numsList[row].append(num)print(numsList)输出结果为:
[[0, 0, 4, 0, 7], [4, 2, 9, 6, 4], [7, 9, 8, 1, 7], [1, 7, 7, 5, 7]]
3. 对所有的元素求和
nums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]total = 0for i in nums: for j in i: total += jprint(total)输出结果为:
total = 59
4. 按列求和
nums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]total = 0for column in range(len(nums[0])): # print("column = ",column) for i in range(len(nums)): total += nums[i][column] print(total)输出结果为:
15
34
59
5. 找出和 最大的行
nums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]maxRow = sum(nums[0])indexOfMaxRow = 0for row in range(1, len(nums)): if sum(nums[row]) > maxRow: maxRow = sum(nums[row]) indexOfMaxRow = rowprint("索引:",indexOfMaxRow)print("最大的行:",maxRow)输出结果为:
索引: 2
最大的行: 24
6. 打乱二维列表的所有元素
import randomnums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]for row in range(len(nums)): for column in range(len(nums[row])): i = random.randint(0, len(nums) - 1) j = random.randint(0, len(nums[row]) - 1) nums[row][column], nums[i][j] = nums[i][j], nums[row][column]print(nums)输出结果为:
[[3, 3, 5], [7, 6, 7], [4, 2, 4], [9, 8, 1]]
7. 排序
'''
sort方法,通过每一行的第一个元素进行排序。对于第一个元素相同的行,则通过它们的第二个元素进行排序。如果行中的第一个和第二个元素都相同,那么利用他们的第三个元素进行排序,依此类推
'''
输出结果为:
[[1, 1], [1, 2], [1, 7], [4, 1], [4, 2], [4, 5]]
补充:下面给大家介绍下python 二维列表按列取元素。
直接切片是不行的:
>>> a=[[1,2,3], [4,5,6]]>>> a[:, 0] # 尝试用数组的方法读取一列失败TypeError: list indices must be integers or slices, not tuple我们可以直接构造:
>>> b = [i[0] for i in a] # 从a中的每一行取第一个元素。>>> print(b)[1, 4]总结
以上所述是小编给大家介绍的python中的二维列表实例详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python调用二维列表中的一维列表的方法:访问二维列表中的一维列表可以用下标法“列表名(数字)”的方式获取到一维列表所有元素x=[[23,25,15,69,4
python生成二维码的实例详解版本相关操作系统:MacOSXEICaptionPython版本:2.7IDE:SublimeText3依赖库Python生成二
本文实例讲述了python实现把二维列表变为一维列表的方法。分享给大家供大家参考,具体如下:c=[[1,2,3],[4,5,6],[7,8,9]]1.用列表推导
python二维列表转置deftranspose(self,matrix):new_matrix=[]foriinrange(len(matrix[0])):m
C/C++动态数组的创建的实例详解在C++语言中,二维动态数组主要使用指针的方法建立,以建立一个整数二维数组为例:#include#include#includ