Thursday Mornings With Python, Part 6 It's a Thursday morning with Python and unusually I'm starting out on a train as well. BUT THERE IS ALSO A MASSIVE PLOT TWIST. I hope to share it in a picture later today lol. If my costume is still intact(ish). I just need to buy 3 rolls of cellotape when I get to the train station. Just you wait and see... Generator Expressions This is so amazing omg. This is so much simpler than the generator function thing and I have been using them for ages anyway. It was good to remember the syntax. There is a great table on list comprehensions vs generator expressions but let me write it up in my own words anyway please thanks. Generator expressions are wrapped in brackets, whereas lists are wrapped in square brackets. Generator expressions return a "newly defined iterable object", whereas list comprehensions return a, well, list. A new list. I want to dwell a bit more on this "newly defined iterable object...