What Is The List Comprehension Equivalent Forp Prex X Is A #441
What is the list comprehension equivalent for?</p> <pre><code class="language-text">{x : x is a whole number less than 20, x is even} (including zero)</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 List Comprehension - Python List Comprehension - Quiz No.3.
What is the list comprehension equivalent for?
{x : x is a whole number less than 20, x is even} (including zero)
[x for x in range(1, 20) if (x%2==0)]
[x for x in range(0, 20) if (x//2==0)]
[x for x in range(1, 20) if (x//2==0)]
[x for x in range(0, 20) if (x%2==0)]