Python for Everybody

Python for Everybody

시즌 1
This is a set of lectures covering 16 chapters of the textbook Python for Everybody (PY4E). The textbook is available on Amazon and Kindle and there is a supporting web site with exercises and materials.
201656 에피소드전체
구매 가능

에피소드

  1. 시즌 1 에피소드 1 - 1.1 Why Program

    2016년 10월 1일
    13분
    TV-G
    Explore the nature of programming and how programming a computer is different than using a computer.
    구매 가능
  2. 시즌 1 에피소드 2 - 1.2 Hardware Architecture

    2016년 10월 1일
    12분
    TV-G
    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. 시즌 1 에피소드 3 - 1.3 Python as a Language

    2016년 10월 1일
    8분
    TV-G
    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 에피소드 4 - 1.4 What do we Say to Python?

    2016년 10월 1일
    13분
    TV-G
    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 에피소드 5 - 2.1 Building Blocks of Python

    2016년 10월 1일
    10분
    전체
    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.
    구매 가능
  6. 시즌 1 에피소드 6 - 2.2 Expressions

    2016년 10월 1일
    20분
    TV-G
    We look at how we use various numerical and string operations to compute new information and store the new values in variables.
    구매 가능
  7. 시즌 1 에피소드 7 - 3.1 If-Then-Else

    2016년 10월 1일
    13분
    전체
    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).
    구매 가능
  8. 시즌 1 에피소드 8 - 3.2 More Conditional Statements

    2016년 10월 1일
    14분
    TV-G
    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.
    구매 가능
  9. 시즌 1 에피소드 9 - 4.1 Using Pre-Defined Functions

    2016년 10월 1일
    10분
    TV-G
    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.
    구매 가능
  10. 시즌 1 에피소드 10 - 4.2 Building our Own Functions

    2016년 10월 1일
    13분
    TV-G
    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.
    구매 가능
  11. 시즌 1 에피소드 11 - 5.1 The Basics of Loops

    2016년 10월 1일
    10분
    TV-G
    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.
    이 비디오는 현재 이용할 수 없습니다.
  12. 시즌 1 에피소드 12 - 5.2 Definite Loops

    2016년 10월 1일
    7분
    TV-G
    We learn how to use the 'for' statement in Python to loop through a set of data.
    구매 가능
  13. 시즌 1 에피소드 13 - 5.3 Patterns for Making Loops

    2016년 10월 1일
    9분
    TV-G
    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.
    이 비디오는 현재 이용할 수 없습니다.
  14. 시즌 1 에피소드 14 - 5.4 Loop Techniques

    2016년 10월 1일
    19분
    TV-G
    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.
    구매 가능
  15. 시즌 1 에피소드 15 - 6.1 Storing Text Data in Strings

    2016년 10월 1일
    11분
    TV-G
    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.
    구매 가능
  16. 시즌 1 에피소드 16 - 6.2 String Operations

    2016년 10월 1일
    19분
    TV-G
    We learn how to extract substrings using slicing, and use the string library to perform common data extraction operations with strings.
    구매 가능
  17. 시즌 1 에피소드 17 - 7.1 Reading Files

    2016년 10월 1일
    8분
    TV-G
    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.
    구매 가능
  18. 시즌 1 에피소드 18 - 7.2 Processing Data in Files

    2016년 10월 1일
    14분
    TV-G
    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.
    구매 가능
  19. 시즌 1 에피소드 19 - 8.1 Creating and Using Lists

    2016년 10월 1일
    11분
    전체
    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.
    구매 가능
  20. 시즌 1 에피소드 20 - 8.2 Manipulating Lists

    2016년 10월 1일
    10분
    TV-G
    We learn about list slicing, list searching, and using pre-defined functions with lists.
    구매 가능
  21. 시즌 1 에피소드 21 - 8.3 Strings and Lists

    2016년 10월 1일
    8분
    TV-Y
    We learn how to parse strings pull sub-strings out of a string using the split() function.
    구매 가능
  22. 시즌 1 에피소드 22 - 9.1 Python Dictionaries

    2016년 10월 1일
    8분
    TV-G
    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.
    구매 가능
  23. 시즌 1 에피소드 23 - 9.2 Building Histograms

    2016년 10월 1일
    9분
    TV-G
    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.
    구매 가능
  24. 시즌 1 에피소드 24 - 9.3 Counting Words in Text

    2016년 10월 1일
    12분
    TV-G
    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.
    구매 가능
  25. 시즌 1 에피소드 25 - 10.1 Understanding Tuples

    2016년 10월 1일
    10분
    TV-G
    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.
    구매 가능