打印所有元素频率大于 K 的行


当需要打印所有元素的频率都大于 K 的行时,可以定义一个方法,它采用两个参数,并使用“all”运算符和迭代来给出结果。

以下是它的演示 −

示例

def frequency_greater_K(row, K) :
   return all(row.count(element) > K for element in row)
my_list = [[11, 11, 32, 43, 12, 23], [42, 14, 55, 62, 16], [11, 11, 11, 11], [42, 54, 61, 18]]
print("The tuple is :")
print(my_list)
K = 1
print("The value of K is :")
print(K)
my_result = [row for row in my_list if frequency_greater_K(row, K)]
print("The result is :")
print(my_result)

输出

The tuple is :
[[11, 11, 32, 43, 12, 23], [42, 14, 55, 62, 16], [11, 11, 11, 11], [42, 54, 61, 18]]
The value of K is :
1
The result is :
[[11, 11, 11, 11]]

说明

  • 定义了一个名为“frequency_greater_K”的方法,它将行和 K 值作为参数,并返回元素计数和键之间的比较作为输出。

  • 定义并显示了列表。在控制台上显示列表。

  • 使用列表解析来迭代列表,并在每个列表上调用该方法。

  • 此结果将赋值给一个变量。

  • 这是显示在控制台上的输出。

更新于: 2021-09-07

121 次浏览

启动你的 事业

完成课程以获得认证

开始
广告