πŸ“Š Problem Solving and Python Programming
Q. , x is even} (including zero)
  • (A) [x for x in range(1, 20) if (x%2==0)]
  • (B) [x for x in range(0, 20) if (x//2==0)]
  • (C) [x for x in range(1, 20) if (x//2==0)]
  • (D) [x for x in range(0, 20) if (x%2==0)]
πŸ’¬ Discuss
βœ… Correct Answer: (D) [x for x in range(0, 20) if (x%2==0)]

Explanation: the required list comprehension will print a whole number, less than 20, provided that the number is even. since the output list should contain zero as well, the answer to this question is: [x for x in range(0, 20) if (x%2==0)].


Explanation by: Mr. Dubey
the required list comprehension will print a whole number, less than 20, provided that the number is even. since the output list should contain zero as well, the answer to this question is: [x for x in range(0, 20) if (x%2==0)].

πŸ’¬ Discussion

πŸ“Š Question Analytics

πŸ‘οΈ
284
Total Visits
πŸ“½οΈ
2 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
88%
Success Rate