Y
Hacker News
new
|
ask
|
show
|
jobs
by
earthboundkid
6906 days ago
If it's supposed to be an accumulator, I take it they want the value of n to be changed each time. I'd do:
def acc(n): while True: n += yield n
1 comments
portLAN
6906 days ago
But emphasizing correctness makes my one-liner not work! And reading the original I can see this whole issue was already covered!
BTW, generators are non-callable.
link
BTW, generators are non-callable.