In this lesson, you’ll learn how to use generator expressions to build a data pipeline. Data pipelines allow you to string together code to process large datasets or streams of data without maxing out your machine’s memory.
For this example, you’ll use a CSV file that is pulled from the TechCrunch Continental USA dataset, which describes funding rounds and dollar amounts for various startups based in the USA. Click the link under Supporting Material to download the dataset included with the sample code for this course.
nelsonblue24 on June 28, 2020
If I understand correctly: * Lines 6-10 contain still another generator. * Line 11 sums all the values generated by that generator.
If I am correct, I think it would help to state those facts explicitly in the video.