在本文中,我们将学习解决给定问题陈述的解决方案和方法。
给定一个可迭代的列表,我们需要计算可迭代的所有正数和负数。
她,我们将讨论两种方法-
蛮力法
使用lambda内联函数
list1 = [1,-9,15,-16,13] pos_count, neg_count = 0, 0 for num in list1: if num >= 0: pos_count += 1 else: neg_count += 1 print("Positive numbers : ", pos_count) print("Negative numbers : ", neg_count)
Positive numbers : 3 Negative numbers : 2
list1 = [1,-9,15,-16,13] neg_count = len(list(filter(lambda x: (x < 0), list1))) pos_count = len(list(filter(lambda x: (x >= 0), list1))) print("Positive numbers : ", pos_count) print("Negative numbers : ", neg_count)
Positive numbers : 3 Negative numbers : 2
在本文中,我们了解了对列表中的正数和负数进行计数的方法。