获取 Python 中矩阵的第 N 列
当需要获取矩阵的第“n”列时,可以使用“any”方法。
以下是对其进行演示 −
示例
my_list = [[34, 67, 89], [16, 27, 86], [48, 30, 0]] print("The list is : ") print(my_list) N = 1 print("The value of N has been initialized to -") print(N) elem = 30 my_result = any(sub[N] == elem for sub in my_list) print("Does the element exist in a particular column ? ") print(my_result)
输出
The list is : [[34, 67, 89], [16, 27, 86], [48, 30, 0]] The value of N has been initialized to - 1 Does the element exist in a particular column ? True
说明
定义一个 list 的 list,并在控制台上显示。
初始化 N 的值。
已在控制台上显示此值。
为 elem 变量分配一个整数值。
使用 any 方法查看列表中是否有任何元素与前面定义的 elem 变量匹配。
结果存储在变量中。
该结果将作为输出显示在控制台上。
广告