Python for Everybody (Audio/PY4E)

Follow Python for Everybody (Audio/PY4E)
Share on
Copy link to clipboard

These are the audio lectures to supplement the textbook 'Python for Everybody: Exploring Information' and its associated web site www.py4e.com. There is also a video podcast of this material.

Dr. Charles Russell Severance


    • Oct 1, 2016 LATEST EPISODE
    • infrequent NEW EPISODES
    • 9m AVG DURATION
    • 114 EPISODES


    Search for episodes from Python for Everybody (Audio/PY4E) with a specific topic:

    Latest episodes from Python for Everybody (Audio/PY4E)

    1.1 Why Program

    Play Episode Listen Later Oct 1, 2016 12:30


    Explore the nature of programming and how programming a computer is different than using a computer.

    1.2 Hardware Architecture

    Play Episode Listen Later Oct 1, 2016 12:15


    In this lecture we learn abut how the computer processes and stores programs. We learn about the CPU, Memory, Storage and Input / Output devices are brought together to write a program.

    1.3 Python as a Language

    Play Episode Listen Later Oct 1, 2016 7:48


    We look at how writing programs is just another form of communication. Instead of communicating with another person, we are communicating our ideas to a computer.

    1.4 What do we Say to Python?

    Play Episode Listen Later Oct 1, 2016 12:45


    We look at the basics of the Python language and how we write code in Python to communicate sequential steps, conditional steps and repeated steps.

    2.1 Building Blocks of Python

    Play Episode Listen Later Sep 30, 2016 9:40


    We look at Python's reserved words, how we name and use variables, why we choose meaningful (mnemonic) variable names and how assignment statements function.

    2.2 Expressions

    Play Episode Listen Later Sep 30, 2016 19:52


    We look at how we use various numerical and string operations to compute new information and store the new values in variables.

    1.1 Why Program

    Play Episode Listen Later Sep 30, 2016 12:30


    Explore the nature of programming and how programming a computer is different than using a computer.

    3.1 If-Then-Else

    Play Episode Listen Later Sep 30, 2016 13:29


    The most basic conditional structure is the if statement where we either execute or skip a segment of code based on the results of a logical expression (i.e. asking a question).

    1.2 Hardware Architecture

    Play Episode Listen Later Sep 30, 2016 12:15


    In this lecture we learn abut how the computer processes and stores programs. We learn about the CPU, Memory, Storage and Input / Output devices are brought together to write a program.

    3.2 More Conditional Statements

    Play Episode Listen Later Sep 30, 2016 13:51


    In this lecture we look at multi-branch if statements and the try-except concept where we can indicate a group of statements to be executed if something goes wrong with a block of statements.

    1.3 Python as a Language

    Play Episode Listen Later Sep 30, 2016 7:48


    We look at how writing programs is just another form of communication. Instead of communicating with another person, we are communicating our ideas to a computer.

    4.1 Using Pre-Defined Functions

    Play Episode Listen Later Sep 30, 2016 10:29


    We look at how code flows into and out of functions as well has how we pass information into functions and get results returned to us.

    1.4 What do we Say to Python?

    Play Episode Listen Later Sep 30, 2016 12:45


    We look at the basics of the Python language and how we write code in Python to communicate sequential steps, conditional steps and repeated steps.

    4.2 Building our Own Functions

    Play Episode Listen Later Sep 30, 2016 12:34


    We look at how to build our own functions using parameters and arguments as well as how we return results to the code that is calling our functions.

    2.1 Building Blocks of Python

    Play Episode Listen Later Sep 30, 2016 9:40


    We look at Python's reserved words, how we name and use variables, why we choose meaningful (mnemonic) variable names and how assignment statements function.

    5.1 The Basics of Loops

    Play Episode Listen Later Sep 30, 2016 9:58


    We look at how we construct a loop so that it runs as long as we want it to run. We learn about iteration variables and exiting loops with the 'break' and 'continue' statements.

    2.2 Expressions

    Play Episode Listen Later Sep 30, 2016 19:52


    We look at how we use various numerical and string operations to compute new information and store the new values in variables.

    5.2 Definite Loops

    Play Episode Listen Later Sep 30, 2016 6:51


    We learn how to use the 'for' statement in Python to loop through a set of data.

    3.1 If-Then-Else

    Play Episode Listen Later Sep 30, 2016 13:29


    The most basic conditional structure is the if statement where we either execute or skip a segment of code based on the results of a logical expression (i.e. asking a question).

    5.3 Patterns for Making Loops

    Play Episode Listen Later Sep 30, 2016 8:43


    Loops have a beginning, middle, and end. We look ant how we construct a loop to look at a list of items one at a time so we can compute an overall maximum, minimum or average.

    3.2 More Conditional Statements

    Play Episode Listen Later Sep 30, 2016 13:51


    In this lecture we look at multi-branch if statements and the try-except concept where we can indicate a group of statements to be executed if something goes wrong with a block of statements.

    5.4 Loop Techniques

    Play Episode Listen Later Sep 30, 2016 18:47


    We continue to look at how to construct loops including how to do something special the first time through the loop. We introduce the idea of 'None' which is a way to indicate that a variable is currently empty.

    4.1 Using Pre-Defined Functions

    Play Episode Listen Later Sep 30, 2016 10:29


    We look at how code flows into and out of functions as well has how we pass information into functions and get results returned to us.

    6.1 Storing Text Data in Strings

    Play Episode Listen Later Sep 30, 2016 10:42


    We learn how to create string variables and extract portions of the data as well as write simple loops to read through the characters in a string.

    4.2 Building our Own Functions

    Play Episode Listen Later Sep 30, 2016 12:34


    We look at how to build our own functions using parameters and arguments as well as how we return results to the code that is calling our functions.

    6.2 String Operations

    Play Episode Listen Later Sep 30, 2016 18:44


    We learn how to extract substrings using slicing, and use the string library to perform common data extraction operations with strings.

    5.1 The Basics of Loops

    Play Episode Listen Later Sep 30, 2016 9:58


    We look at how we construct a loop so that it runs as long as we want it to run. We learn about iteration variables and exiting loops with the 'break' and 'continue' statements.

    7.1 Reading Files

    Play Episode Listen Later Sep 30, 2016 7:54


    We look at how text and lines are represented in files, how we open a file and write a loop to read through all the lines in the file.

    5.2 Definite Loops

    Play Episode Listen Later Sep 30, 2016 6:51


    We learn how to use the 'for' statement in Python to loop through a set of data.

    7.2 Processing Data in Files

    Play Episode Listen Later Sep 30, 2016 13:46


    We look at patterns for reading and processing the data in files. We learn how to check for nonexistent files, and how we process each line within the file.

    5.3 Patterns for Making Loops

    Play Episode Listen Later Sep 30, 2016 8:43


    Loops have a beginning, middle, and end. We look ant how we construct a loop to look at a list of items one at a time so we can compute an overall maximum, minimum or average.

    8.1 Creating and Using Lists

    Play Episode Listen Later Sep 30, 2016 10:56


    We learn how to put data into lists, take data out of the list and write simple loops to examine the elements of a list.

    5.4 Loop Techniques

    Play Episode Listen Later Sep 30, 2016 18:47


    We continue to look at how to construct loops including how to do something special the first time through the loop. We introduce the idea of 'None' which is a way to indicate that a variable is currently empty.

    8.2 Manipulating Lists

    Play Episode Listen Later Sep 30, 2016 9:36


    We learn about list slicing, list searching, and using pre-defined functions with lists.

    6.1 Storing Text Data in Strings

    Play Episode Listen Later Sep 30, 2016 10:42


    We learn how to create string variables and extract portions of the data as well as write simple loops to read through the characters in a string.

    8.3 Strings and Lists

    Play Episode Listen Later Sep 30, 2016 8:02


    We learn how to parse strings pull sub-strings out of a string using the split() function.

    6.2 String Operations

    Play Episode Listen Later Sep 30, 2016 18:44


    We learn how to extract substrings using slicing, and use the string library to perform common data extraction operations with strings.

    9.1 Python Dictionaries

    Play Episode Listen Later Sep 30, 2016 8:03


    We compare and contrast how Python lists and dictionaries are structured internally. How we use position to index lists and use keys to index dictionaries.

    7.1 Reading Files

    Play Episode Listen Later Sep 30, 2016 7:54


    We look at how text and lines are represented in files, how we open a file and write a loop to read through all the lines in the file.

    9.2 Building Histograms

    Play Episode Listen Later Sep 30, 2016 9:26


    We look at how we can use dictionaries to count the frequencies of many things at the same time. We learn how the key and value are related in a dictionary and example the get method to retrieve values from a Python dictionary.

    7.2 Processing Data in Files

    Play Episode Listen Later Sep 30, 2016 13:46


    We look at patterns for reading and processing the data in files. We learn how to check for nonexistent files, and how we process each line within the file.

    9.3 Counting Words in Text

    Play Episode Listen Later Sep 30, 2016 11:54


    In this segment we bring everything together, reading a file, parsing the lines, and computing the frequencies of the words in the file. This is an important moment that pulls from everything we have learned so far.

    8.1 Creating and Using Lists

    Play Episode Listen Later Sep 30, 2016 10:56


    We learn how to put data into lists, take data out of the list and write simple loops to examine the elements of a list.

    10.1 Understanding Tuples

    Play Episode Listen Later Sep 30, 2016 9:47


    We look at the basic syntax and capabilities of Python tuples. We explore the concept of immutability, and we compare tuples to lists and strings.

    8.2 Manipulating Lists

    Play Episode Listen Later Sep 30, 2016 9:36


    We learn about list slicing, list searching, and using pre-defined functions with lists.

    10.2 Sorting Data

    Play Episode Listen Later Sep 30, 2016 12:23


    We look at how we sort lists, dictionaries, and lists of tuples in Python.

    8.3 Strings and Lists

    Play Episode Listen Later Sep 30, 2016 8:02


    We learn how to parse strings pull sub-strings out of a string using the split() function.

    Worked Example: Sorting Dictionaries

    Play Episode Listen Later Sep 30, 2016 10:05


    Worked Example: Sorting Dictionaries

    9.1 Python Dictionaries

    Play Episode Listen Later Sep 30, 2016 8:03


    We compare and contrast how Python lists and dictionaries are structured internally. How we use position to index lists and use keys to index dictionaries.

    11.1 Introduction to Regular Expressions

    Play Episode Listen Later Sep 30, 2016 10:46


    We look at the syntax of regular expressions and how to use them to search through text data.

    9.2 Building Histograms

    Play Episode Listen Later Sep 30, 2016 9:26


    We look at how we can use dictionaries to count the frequencies of many things at the same time. We learn how the key and value are related in a dictionary and example the get method to retrieve values from a Python dictionary.

    Claim Python for Everybody (Audio/PY4E)

    In order to claim this podcast we'll send an email to with a verification link. Simply click the link and you will be able to edit tags, request a refresh, and other features to take control of your podcast page!

    Claim Cancel