Which Of The Following Numbers Will Not Be A Part Of The Output #751
Which of the following numbers will not be a part of the output list of the following Python code?</p> <pre><code class="language-python">def sf(a): return a%3!=0 and a%5!=0 m=filter(sf, range(1, 31)) print(list(m))</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Mapping Functions - Python Functional Programming Tools - Quiz No.2.