General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Dr Gamma D
Indently
comments
Comments by "Dr Gamma D" (@DrDeuteron) on "I DIDN'T KNOW You Could Do THIS With "Yield" In Python" video.
yield is also an assignment statement: value = yield value coroutines.
8
next just takes 1 item out of the iterator. list takes them all.
1
I dislike: def meth() result = [] for.... result.append(something) return result It's clumsy, so I'll do def imeth() for.... yield something def meth(): return list(self.imeth()) I find it easier to debug, and look at.
1