I don't understand why it won't work pls help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

I don't understand why it won't work pls help

https://code.sololearn.com/c6KupuT89Yb5/?ref=app

23rd Dec 2019, 5:28 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar
29 Answers
+ 4
What is the problem ? I don't even understand your code. in the function generate, what is the purpose of x if you're just going to ignore it ? Also, that's not how generators work, printing the generator will return the generator object, and not the values it has.
23rd Dec 2019, 5:34 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 3
You have created that generator object successfully, and if you print it, you see it's 'name'. Now if you want to get the next value out, you need to use next() on it. Instead of your print statement, try this: p = generate(peter) print(next(p)) print(next(p)) print(next(p))
23rd Dec 2019, 5:40 PM
HonFu
HonFu - avatar
23rd Dec 2019, 11:09 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
Peter Paulinus Polycarp the asterisk decomposes a list (best explanation I could think of), if let say you have a function that takes three arguments f(a, b, c), and you want to input a list l = [a, b, c] as the three parameters, you'll get an error running f(l), but with f(*l), you're extracting all the values in the list. Same goes in this case, you're extracting the values and printing them all.
23rd Dec 2019, 5:49 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
Peter Paulinus Polycarp just to mention one last thing. The best way generators should be used is like what HonFu did. If you just convert the generator to a list, then you're throwing away the whole concept of generators.
23rd Dec 2019, 5:55 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
Aymane Boukrouh [Unavailable] I've got it now, but what do u mean by throwing away the concept away the whole concept of generator. If I use list comprehension it won't work
23rd Dec 2019, 6:29 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar
+ 1
Peter Paulinus Polycarp how did you try it ?
23rd Dec 2019, 6:30 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
https://code.sololearn.com/cxIxyGuccUl2/?ref=app It keeps repeating my input for the said range
23rd Dec 2019, 6:38 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar
+ 1
Okay, what is your desired output ? I'm confused
23rd Dec 2019, 7:01 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
The point of generators is, that you don't create all values at once, but only always the next one, as you need it. That's what next does. You can imagine a generator object as a coffee machine: when you press 'next', another cup of coffee is made. ;-) for loops also do this: They call next, next, next. If you just make it a list, there's not really a point to create a generator in the first place, because now you create all the C a values at once.
23rd Dec 2019, 7:18 PM
HonFu
HonFu - avatar
+ 1
I think i found where u get it wrong... Check it out here https://code.sololearn.com/cb40H5sPHLOj/?ref=app
23rd Dec 2019, 9:07 PM
Yusuf Shuaib Olalekan
Yusuf Shuaib Olalekan - avatar
+ 1
Aymane Boukrouh [Unavailable] I think I get my mistake now .
23rd Dec 2019, 10:17 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar
+ 1
Aymane Boukrouh [Unavailable] I'm grateful thanks 4 ur time
23rd Dec 2019, 10:43 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar
+ 1
Ruchika Tripathi don't spam, spamming may lead to a temporaty ban
24th Dec 2019, 3:34 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
You can do like this : yield 2*p and 10**x But I still don't know what the code supposed to do
25th Dec 2019, 12:07 PM
ycsvenom
ycsvenom - avatar
+ 1
Me too
25th Dec 2019, 1:56 PM
ycsvenom
ycsvenom - avatar
0
HonFu pls , why the next function
23rd Dec 2019, 5:44 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar
0
Peter Paulinus Polycarp this is very basic manipulation of generators, the next function is literally the first fuction taught after generators. Please review the course.
23rd Dec 2019, 5:45 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
0
Alexandr pls I get the need for the for loop but why the asterisk
23rd Dec 2019, 5:46 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar
0
Aymane Boukrouh [Unavailable] pls I didn't ignore the argument x I used it in the for loop and the yield or maybe you can xplain what u meant by ignore
23rd Dec 2019, 5:50 PM
Peter Paulinus Polycarp
Peter Paulinus Polycarp - avatar