Now that we have a solid base to work from, we can begin to dive into more advanced topics. Over the next two weeks, we’ll be covering concepts that help to reduce the amount of code you need to write. Many of these concepts will help prepare us for data analysis in Week 10.
Throughout this week, we’ll be covering one-liners using list comprehension and anonymous functions. This will help to reduce the lines of code by condensing the same functionality within a single line. We’ll then cover a few of the built-in Python functions that make working with data easier. The ...