1.

Write a list comprehension for producing a list of numbers between 1 and 1000 that are divisible by 3.(a) [x in range(1, 1000) if x%3==0](b) [x for x in range(1000) if x%3==0](c) [x%3 for x in range(1, 1000)](d) [x%3=0 for x in range(1, 1000)]

Answer» Correct answer is (b) [x for x in range(1000) if x%3==0]

The best I can explain: The list comprehension [x for x in range(1000) if x%3==0] produces a list of numbers between 1 and 1000 that are divisible by 3.


Discussion

No Comment Found