Which of the following numbers will not be a part of the output list of the following Python code?
def sf(a): return a%3!=0 and a%5!=0m=filter(sf, range(1, 31))print(list(m))
def sf(a): return a%3!=0 and a%5!=0m=filter(sf, range(1, 31))print(list(m))Which of the following numbers will not be a part of the output list of the following Python code?
def sf(a): return a%3!=0 and a%5!=0m=filter(sf, range(1, 31))print(list(m)) Correct Answer 10
মোঃ আরিফুল ইসলাম
Feb 20, 2025