在本文中,我们将学习解决给定问题陈述的解决方案和方法。
给定一个可迭代的列表,我们需要打印列表中的所有负数。
在这里,我们将讨论给定问题陈述的三种方法。
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
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]
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]
在本文中,我们了解了在输入列表中打印负数的方法。