+ 2
Create a list of multiples of 7 from 7 to 70 without loops?
try more solutions without loops
14 odpowiedzi
+ 6
print(list(map(lambda x: x*7, list(range(10)))))
+ 6
^ this is a loop but comprehended
+ 5
Does this work?
+ 4
Is it part of the challenge or is it necessary for the situation?
+ 4
a=[i for i in range(7,71) if i%7==0]
+ 3
I would just like a reason to not use loops?
+ 3
super yash
+ 2
why?
+ 1
alternative solution please.
+ 1
I need a solution without loops.
+ 1
could you please solve it?
+ 1
you can try one more solution without loops