Python程序,用于打印列表中的负数
在本文中,我们将了解如何解决给定的问题陈述。
问题陈述
给定一个可迭代列表,我们需要打印列表中的所有负数。
这里我们将讨论针对给定问题陈述的三种方法。
方法1 − 使用增强的for循环
示例
list1 = [-11,23,-45,23,-64,-22,-11,24] # iteration for num in list1: # check if num < 0: print(num, end = " ")
输出
-11 -45 -64 -22 -11
方法2 − 使用filter & lambda函数
示例
list1 = [-11,23,-45,23,-64,-22,-11,24] # lambda exp. no = list(filter(lambda x: (x < 0), list1)) print("Negative numbers in the list: ", no)
输出
Negative numbers in the list: [-11 -45 -64 -22 -11]
方法3 − 使用列表推导
示例
list1 = [-11,23,-45,23,-64,-22,-11,24] #list comprehension nos = [num for num in list1 if num < 0] print("Negative numbers in the list: ", nos)
输出
Negative numbers in the list: [-11 -45 -64 -22 -11]
总结
在本文中,我们了解了如何在输入列表中打印负数的方法。
广告