adplus-dvertising
frame-decoration

Question

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)]

Posted under Python

Answer: (b).[x for x in range(1000) if x%3==0]

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Write a list comprehension for producing a list of numbers between 1 and 1000 that are divisible by 3.