Blog available for sell
This blog is available for sale. Please 'contact us' if interested.
Advertise with us

Python Multiple Choice Questions
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)]
Show Answer




DigitalOcean Referral Badge

© 2022-2023 Python Circle   Contact   Sponsor   Archive   Sitemap