Home > Store

Python Survival Skills LiveLessons: Code Like a Pro (Video Training)

Python Survival Skills LiveLessons: Code Like a Pro (Video Training)

Your browser doesn't support playback of this video. Please download the file to view it.

Online Video

Register your product to gain access to bonus material or receive a coupon.

Description

  • Copyright 2019
  • Edition: 1st
  • Online Video
  • ISBN-10: 0-13-577274-5
  • ISBN-13: 978-0-13-577274-4

6.5+ Hours of Video Instruction
 
Take your Python skills to the next level!

Overview
Python Survival Skills LiveLessons helps you to master the intermediate-to-advanced features that can take people months or even years to learn. In this video course Brian Overland teaches you the tools you’ll be expected to know to become a professional Python programmer.
 
About the Instructor

Brian Overland is an experienced programming professional who has worked as a programmer, manager, and senior technical writer for Microsoft Corporation. He has also published a dozen titles on C, C++, Java, Visual Basic, and now Python. He has done programming work on contract, including an automated irrigation system for Walt Disney World, and he wrote some of the first programs ever written in Microsoft Visual Basic, including a calculator app, a Turing machine emulator, and many other applications.
 
Skill Level

  • Intermediate
 
Learn How To
  • Use list comprehension
  • Use set comprehension
  • Format text precisely
  • Implement multi-dimensional lists
  • Utilize decorators
  • Write generators
  • Store data in files efficiently
  • Understand Python classes and objects
 
Who Should Take This Course
  • Anyone wanting to develop their basic Python skills to the level of a professional programmer
 
Course Requirements
  • Basic Python programming skills
 
Lesson Descriptions
 
Lesson 1: List Comprehension
Another name for list comprehension might be “list compaction.” It enables you to do more with less code. This capability is exemplified in the lesson with a classic programming challenge--writing a palindrome application. Brian shows you how to reduce the code you would normally write by 75% using list comprehension.
Topics 1.1 and 1.2 introduce list comprehension and shows you how it works. Topic 1.3 introduces an optional but powerful feature: conditional inclusion. Finally, Topic 1.4 puts it all together to show you how to use list comprehension in an example that’s much, much shorter than the obvious way to do things.

Lesson 2: Sets and Set Comprehension
Lesson 2 introduces sets. Yes, that’s the concept from math that you are already likely to be familiar with. The concept has great practical value, so much so that it’s a built-in feature of Python, just as legitimate as the concept of a list, string, or number.
What’s really cool about sets is that the Python operations on sets precisely match the mathematical concepts. This includes unions, intersections, subsets, and so on.
But what are the practical uses of sets? You’ll see the usefulness of sets in this lesson, beginning with Topic 2.1, which introduces the concept, along with Topic 2.2, which presents set operations. Topic 2.3 introduces the famous “Sieve” application. Finally, Topic 2.4 shows how to use Python sets to create an incredibly efficient version of this classic programming benchmark.

Lesson 3: Formatting Text Precisely
Formatting text may not seem exciting at first, but it’s vital to the professional programmer. Think about it. How often does a company require reports to be written out nicely, with complex data printed in neat columns in which everything lines up?
You could do everything yourself, but to print those nice columns without help from Python, you’d being doing a great deal of extra work.
Python comes to the rescue with not one but three formatting techniques. Do you have to master all three at once? No. But it’s useful to know about them, in case you want to use the more advanced approaches one day.
Therefore, we start by looking at the simplest approach, the percent operator, in Topics 3.1 and 3.2. This operator is borrowed from the old C language, so you may already know how to use it. Then, in Topics 3.3 and 3.4, we look at the format function and the format method. Given the similarity in names, they ought to be related, and it turns out they are. But they have a similar purpose: to help you print nice-looking output without a lot of work.

Lesson 4: Multi-Dimensional Lists
No programming language is really complete without some way to handle multi-dimensional arrays--or as we call them in Python, multi-dimensional lists. They’re also called matrixes. Matrixes have important uses in game programming, simulations, linear algebra, and many other areas.
But this is one area in which Python throws you some “curveballs.” It’s surprising that this simple task--creating a matrix--is in some ways easier in C, C++, or Java than it is in Python.
If you want, you can always create matrixes with the Numpy package, which we may deal with in a future course. But in this lesson, I’ll show you how to create two-dimensional lists with the core Python language. The problem is that Python matrixes can’t be declared. They have to be built.
Topic 4.1 shows some simple uses for Python 2D lists. Topic 4.2 shows why creating arbitrarily large matrixes in Python is not so easy. But the last two topics, 4.3 and 4.4, come to the rescue to show how to master the problem and even create higher-dimensional lists, if you want.

Lesson 5: Dictionaries
Next is an area of Python that seems truly magical: data dictionaries. Like the lists and set types, the dictionary is a fundamental data type in Python. In this lesson, you’ll see just what dictionaries can do. You can use a dictionary to look up data by providing a “key”—-typically a string containing a meaningful name—-which is usually much more convenient than using an index number.
This may not sound like much at first, but it opens up a world of possibilities. A data dictionary is like a rudimentary database system. Its basic operation is simple, but you can use it to do many things.
The first two topics, 5.1 and 5.2, show you some practical uses. Topic 5.3 is more practical still, showing you how to use a dictionary to count words and provide a frequency count. Topic 5.4 does the same thing, but it takes the input from a file. While we’re at it, we’ll review the principles of reading and writing text files.
Lest you think this is just busy work, it’s not. The capability to create frequency counts is an important part of computer algorithms such as Huffman encoding. By mastering tasks like these, you’re on your way to becoming a “real programmer” with Python.

Lesson 6: Generators
This lesson and the next get into some very special features of Python that you won’t find in most other languages. They are unique, or nearly unique, to Python. One of these is the “generator” technology.
Perhaps the most basic concept throughout Python is that of an “iterator,” or rather “iterable,” which is the other side of the same coin. An iterator is any sequence that can be stepped through, one item at a time. Lists are iterables, but you can create your own iterable by writing a generator function. This is a really cool technique that gives you tremendous flexibility.
First, we look at the rationale for writing a generator rather than a list in Topic 6.1. Topic 6.2 explains how generators work and what makes them different. Then, in Topics 6.3 and 6.4, we look at some highly practical uses for generators and why you want to put them in your programs.

Lesson 7: Decorators
Few Python topics have a reputation for being more difficult than the subject of decorators. The subject is not so difficult; the problem is that it’s usually not taught very well. If you’ve heard about this subject or found it difficult to learn, well then, rest easy! Because you’ve finally come to the right place.
Python “decoration” is simply a way of adding extra code to functions and then automating the process. In Topic 7.1, Brian talks about why this is such a great and useful tool, especially if you want to profile, or time, your functions. Topic 7.2 presents an example of a simple decorator.
The last two topics, 7.3 and 7.4, complete the process by showing the complete syntax you need to master to understand decorators.
Again, this is not an impossible subject to understand, or even all that difficult. This lesson will give you the understanding you need.

Lesson 8: Classes and Objects, Part I
The final subject of the course is classes and objects. These concepts are so interrelated that they really must be covered together. But this subject-—object-oriented programming-—is such a big one, that it takes two complete lessons just to give you a good introduction to the topic.
You may well have come across this subject before, when working with languages such as C++, C#, and Java. But it’s more than just using the “dot” syntax. It’s about creating data types that are active, that can be called upon to perform services.
Once again, Python-—although it’s mostly easier for beginners-—throws some curveballs at you. As you’ll see in Topics 8.1 and 8.2, it requires a little extra work to create a class with simple initialization.
The other side of this coin is that Python classes are incredibly convenient, as they support many “magic methods” that automatically perform important services for you. In Topic 8.3, you’ll see how the __str__ method performs automatic printing of objects. Finally, in Topic 8.4, you’ll see how to make your objects perform any kind of service you want.
In the long run, you’ll find Python classes easy to code and sometimes great time-savers.

Lesson 9: Classes and Objects II, Data Recs
The archetypal model for classes and objects is that of a data record, but a class is much more, of course. Think of a class, or an object, as a “data record plus.” It’s “More than a Data Record!” This lesson starts by showing a typical data record—-this one stores information on your company’s employees. Topic 9.1 shows you how to create this type, and Topic 9.2 shows you how to automatically print employee-record objects, in any format you want.

But what good is storing data if you can’t enter it easily? Topic 9.3 illustrates a data-entry routine that will make it a breeze to work with the new Employee class.

Finally, we end this course with Topic 9.4, by showing the best way to store a series of records in a binary file-—and then read them out. This section introduces the super-convenient Python “pickle” package, which is by far the easiest way to work with binary data.

About Pearson Video Training
Pearson publishes expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. These professional and personal technology videos feature world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, Pearson IT Certification, Prentice Hall, Sams, and Que Topics include: IT Certification, Network Security, Cisco Technology, Programming, Web Development, Mobile Development, and more. Learn more about Pearson Video training at  http://www.informit.com/video.

Video Lessons are available for download for offline viewing within the streaming format. Look for the green arrow in each lesson.

Sample Content

Table of Contents

Introduction

Lesson 1: List Comprehension
Topics
1.1 Copying Lists
1.2 Using List Comprehension
1.3 Conditional Inclusion
1.4 List Comprehension and Palindromes
Lesson 1 Summary

Lesson 2: Sets and Set Comprehension
Topics
2.1 Introducing Sets
2.2 Set Operations
2.3 The Sieve Application
2.4 Set Comprehension with Sieves
Lesson 2 Summary

Lesson 3: Formatting Text Precisely
Topics
3.1 Simple Formatting Problem
3.2 Printing a Nice Table with %
3.3 The format Function
3.4 The format Method
Lesson 3 Summary

Lesson 4: Multi-Dimensional Lists
Topics
4.1 Creating and Using 2D Lists
4.2 The M x N Problem
4.3 Solving the Matrix Problem
4.4 Printing a Multiplication Tab
Lesson 4 Summary

Lesson 5: Dictionaries
Topics
5.1 Introducing Dictionaries
5.2 Example: Magic Numbers
5.3 Counting Words in a String
5.4 Counting Words in a File
Lesson 5 Summary

Lesson 6: Generators
Topics
6.1 The Problem: Is N a Fibonacci?
6.2 How Generators Work
6.3 Putting Generators to Use
6.4 Other Examples of Generator Use
Lesson 6 Summary

Lesson 7: Decorators
Topics
7.1 Goal of Decoration: Profiling
7.2 A Simple Decorator
7.3 Enhanced Decoration: Arguments
7.4 Decorator @ Syntax
Lesson 7 Summary

Lesson 8: Classes and Objects, Part I
Topics
8.1 Defining Classes: Point Class
8.2 Adding Initialization (__init__)
8.3 String Representation (__str__)
8.4 Other Methods
Lesson 8 Summary

Lesson 9: Classes and Objects II, Data Recs
Topics
9.1 An Employee Class, with __init__
9.2 Employee Class String Representation
9.3 Data Entry Routine
9.4 Reading and Writing Binary Recs
Lesson 9 Summary

Summary

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020