Video description
5+ Hours of Video Instruction
Effective Python LiveLessons Video Training offers developers insight into the Pythonic way of writing programs, building on the viewer’s fundamental understanding of Python to help him or her write programs more effectively.
Description
Effective Python LiveLessons Video Training is based on the book Effective Python written by Google software engineer Brett Slatkin for the Effective Software Development Series. Each lesson contains a broad but related set of items. Each item is designed to provide concise and specific guidance on what to do and what to avoid when writing programs using Python. Hands-on demonstration helps the viewer understand how to put each item into action.
Each of the video’s six lessons includes items focused on a key topic. The video starts with items focused on how to make more efficient use of expressions and statements before moving on to lessons that teach viewers how to better use comprehensions and generators, functions, and classes. Next, the training teaches viewers how to solve problems associated with concurrency and parallelism. Finally, the focus switches to how to make Python programs more robust. After watching this video, Python programmers will have the knowledge necessary to really master the language and apply the advice, tips, and tricks learned from the video to the Python programs they’re writing, immediately improving the quality of their code.
The source code repository for this LiveLesson is located at https://github.com/bslatkin/effectivepython/blob/master/VIDEO.md.
About the Instructor
Brett Slatkin is a Senior Staff Software Engineer at Google and the engineering lead and co-founder of Google Consumer Surveys. Slatkin formerly worked on Google App Engine’s Python infrastructure. He is the co-creator of the PubSubHubbub protocol. Nine years ago, he cut his teeth using Python to manage Google’s enormous fleet of servers. Outside of his day job, he works on open source tools and writes about software, bicycles, and other topics on his personal website. He earned his B.S. in Computer Engineering from Columbia University in the City of New York. He lives in San Francisco.
Skill Level
- Intermediate to Advanced
What You Will Learn
- Methods for using expressions and statements more efficiently
- How to make better use of comprehensions and generators
- How to make better use of functions and classes
- Methods for working with concurrency and parallelism
- How to make your programs more robust
Who Should Take This Course
- Advanced programmers who have a history of programming professionally but are now using Python for a real project.
- Intermediate programmers who have just learned how to program for the first time using Python and want to gain skills to become more advanced programmers.
- Non-professional programmers who use Python as part of their jobs. These people have a good working knowledge of Python but are probably missing important fundamentals that would make them more effective.
Course Requirements
- Intermediate-level knowledge of Python programming
- Some experience building a Python program
Table of Contents
Lesson 1: Using Expressions and Statements
In the first lesson, you learn how to write programs in the Pythonic style, using methods that will affect every program you write.
Lesson 2: Using Comprehensions and Generators
In Lesson 2, you learn how to use comprehensions and generators to work with and create sequences of values.
Lesson 3: Using Functions
Lesson 3 covers a wide variety of unique capabilities that Python has for writing and calling functions.
Lesson 4: Using Classes
The focus of Lesson 4 is how to put Python's object-oriented capabilities to good use while at the same time avoiding common pitfalls.
Lesson 5: Working with Concurrency and Parallelism
Lesson 5 provides you with insights into Python's built-in facilities for writing programs that do many things at the same time.
Lesson 6: Making Programs Robust
In the final lesson, you learn the best techniques for making sure your programs are bulletproof when they run in production.
About LiveLessons Video Training
The LiveLessons Video Training series publishes hundreds of hands-on, expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. This professional and personal technology video series features world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, IBM Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Programming, Web Development, Mobile Development, Home and Office Technologies, Business and Management, and more. View all LiveLessons on InformIT at: http://www.informit.com/livelessons.
Table of contents
- Introduction
-
Lesson 1: Using Expressions and Statements
- Items
- Item 1 Know how to slice sequences
- Item 2 Avoid using start, end, and stride in a single slice
- Item 3 Prefer ENUMERATE over RANGE
- Item 4 Use ZIP to process iterators in parallel
- Item 5 Avoid ELSE blocks after FOR and WHILE loops
- Item 6 Take advantage of each block in TRY/EXCEPT/ELSE/FINALLY
- Item 7 Consider CONTEXTLIB and with statements for reusable TRY/FINALLY behavior
- Lesson 2: Using Comprehensions and Generators
-
Lesson 3: Using Functions
- Items
- Item 13 Know how closures interact with variable scope
- Item 14 Accept functions for simple interfaces instead of classes
- Item 15 Reduce visual noise with variable positional arguments
- Item 16 Provide optional behavior with keyword arguments
- Item 17 Enforce clarity with keyword-only arguments
- Item 18 Use NONE and docstrings to specify dynamic default arguments
- Lesson 4: Using Classes
- Lesson 5: Working with Concurrency and Parallelism
- Lesson 6: Making Programs Robust
- Summary
Product information
- Title: Effective Python
- Author(s):
- Release date: August 2015
- Publisher(s): Pearson
- ISBN: 0134175247
You might also like
book
Object-Oriented Python
Object-Oriented Python (OOP) is a paradigm that combines data and code into cohesive units, allowing you …
book
Effective Python: 90 Specific Ways to Write Better Python, 2nd Edition
Updated and Expanded for Python 3 It’s easy to start developing programs with Python, which is …
book
Robust Python
Does it seem like your Python projects are getting bigger and bigger? Are you feeling the …
video
Introduction to Python
Intrigued by Python? Learn how to get started with this popular language, whether you’re new to …