Examveda

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: Option B


This Question Belongs to Python Program >> Lists In Python

Join The Discussion

Related Questions on Lists in Python