在本文中,我们将学习解决给定问题陈述的解决方案和方法。
给定一个可迭代的列表作为输入,我们需要在给定的可迭代列表中显示奇数。
在这里,我们将讨论三种解决此问题的方法。
list1 = [11,23,45,23,64,22,11,24] # iteration for num in list1: # check if num % 2 != 0: print(num, end = " ")
11, 23, 45, 23, 11
list1 = [11,23,45,23,64,22,11,24] # lambda exp. odd_no = list(filter(lambda x: (x % 2 != 0), list1)) print("Odd numbers in the list: ", odd_no)
Odd numbers in the list: [11, 23, 45, 23, 11]
list1 = [11,23,45,23,64,22,11,24] #list comprehension odd_nos = [num for num in list1 if num % 2 != 0] print("Odd numbers : ", odd_nos)
Odd numbers in the list: [11, 23, 45, 23, 11]
在本文中,我们学习了在列表中找到所有作为输入的奇数的方法。