Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMohamed Abdelaal
Python Development Techdegree Student 106 PointsI dont really understand this...
how does 'yield from' return, the itterable, to the instance...
1 Answer
Megan Amendola
Treehouse TeacherHi! The difference between return
and yield from
is that return
sends back a specified value. It cannot send back multiples values one at a time. yield from
sends back a single value from the given iterable and then sends back the next value and the next until it has sent all values from the iterable.
Here's some more info: https://www.geeksforgeeks.org/use-yield-keyword-instead-return-keyword-python/