I dno't understand it. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I dno't understand it.

So I'm at this challenge and I don't understand how to do it. Create a list of multiples of 3 from 0 to 20. a = _i for i in range(20) _i% _==0] Every time I've put an "underscore" that's a blank space.

20th Apr 2019, 6:01 PM
Mikkel Bielefeldt
Mikkel Bielefeldt - avatar
1 Answer
+ 1
Create a list of multiples of 3 from 0 to 20. a = [i for i in range(20) if i%3==0] So, it is like this: For loop runs from 0 to (20-1)=>19 In every loop, it checks if i is divisible by 3 i.e. i%3==0 If it is true, it is added in the list else discarded That's basically it... In long code: a = [] for i in range(20): if i%3==0: a.append(i)
20th Apr 2019, 8:08 PM
Kartik
Kartik - avatar