Python for Everybody

Python for Everybody

खरीदने के लिए उपलब्ध
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.
20161 सीज़न
कलाकार: Dr. Charles Russell Severance
सभी
  • 1. 1.1 Why Program

    1. 1.1 Why Program

    Explore the nature of programming and how programming a computer is different than using a computer.
    Explore the nature of programming and how programming a computer is different than using a computer.
    टीवी-जी
    13मिन
    1 अक्टू॰ 2016
  • 2. 1.2 Hardware Architecture

    2. 1.2 Hardware Architecture

    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.
    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.
    टीवी-जी
    12मिन
    1 अक्टू॰ 2016
  • 3. 1.3 Python as a Language

    3. 1.3 Python as a Language

    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.
    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.
    टीवी-जी
    8मिन
    1 अक्टू॰ 2016
  • 4. 1.4 What do we Say to Python?

    4. 1.4 What do we Say to Python?

    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.
    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.
    टीवी-जी
    13मिन
    1 अक्टू॰ 2016
  • 5. 2.1 Building Blocks of Python

    5. 2.1 Building Blocks of Python

    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.
    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.
    सभी
    10मिन
    1 अक्टू॰ 2016
  • 6. 2.2 Expressions

    6. 2.2 Expressions

    We look at how we use various numerical and string operations to compute new information and store the new values in variables.
    We look at how we use various numerical and string operations to compute new information and store the new values in variables.
    टीवी-जी
    20मिन
    1 अक्टू॰ 2016
  • 7. 3.1 If-Then-Else

    7. 3.1 If-Then-Else

    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).
    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).
    सभी
    13मिन
    1 अक्टू॰ 2016
  • 8. 3.2 More Conditional Statements

    8. 3.2 More Conditional Statements

    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.
    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.
    टीवी-जी
    14मिन
    1 अक्टू॰ 2016
  • 9. 4.1 Using Pre-Defined Functions

    9. 4.1 Using Pre-Defined Functions

    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.
    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 अक्टू॰ 2016
  • 10. 4.2 Building our Own Functions

    10. 4.2 Building our Own Functions

    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.
    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.
    टीवी-जी
    13मिन
    1 अक्टू॰ 2016
  • 11. 5.1 The Basics of Loops

    11. 5.1 The Basics of Loops

    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.
    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.
    टीवी-जी
    10मिन
    1 अक्टू॰ 2016
  • 12. 5.2 Definite Loops

    12. 5.2 Definite Loops

    We learn how to use the 'for' statement in Python to loop through a set of data.
    We learn how to use the 'for' statement in Python to loop through a set of data.
    टीवी-जी
    7मिन
    1 अक्टू॰ 2016
  • 13. 5.3 Patterns for Making Loops

    13. 5.3 Patterns for Making Loops

    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.
    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.
    टीवी-जी
    9मिन
    1 अक्टू॰ 2016
  • 14. 5.4 Loop Techniques

    14. 5.4 Loop Techniques

    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.
    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.
    टीवी-जी
    19मिन
    1 अक्टू॰ 2016
  • 15. 6.1 Storing Text Data in Strings

    15. 6.1 Storing Text Data in Strings

    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.
    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.
    टीवी-जी
    11मिन
    1 अक्टू॰ 2016
  • 16. 6.2 String Operations

    16. 6.2 String Operations

    We learn how to extract substrings using slicing, and use the string library to perform common data extraction operations with strings.
    We learn how to extract substrings using slicing, and use the string library to perform common data extraction operations with strings.
    टीवी-जी
    19मिन
    1 अक्टू॰ 2016
  • 17. 7.1 Reading Files

    17. 7.1 Reading Files

    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.
    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.
    टीवी-जी
    8मिन
    1 अक्टू॰ 2016
  • 18. 7.2 Processing Data in Files

    18. 7.2 Processing Data in Files

    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.
    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.
    टीवी-जी
    14मिन
    1 अक्टू॰ 2016
  • 19. 8.1 Creating and Using Lists

    19. 8.1 Creating and Using Lists

    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.
    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.
    सभी
    11मिन
    1 अक्टू॰ 2016
  • 20. 8.2 Manipulating Lists

    20. 8.2 Manipulating Lists

    We learn about list slicing, list searching, and using pre-defined functions with lists.
    We learn about list slicing, list searching, and using pre-defined functions with lists.
    टीवी-जी
    10मिन
    1 अक्टू॰ 2016
  • 21. 8.3 Strings and Lists

    21. 8.3 Strings and Lists

    We learn how to parse strings pull sub-strings out of a string using the split() function.
    We learn how to parse strings pull sub-strings out of a string using the split() function.
    टीवी-वाई
    8मिन
    1 अक्टू॰ 2016
  • 22. 9.1 Python Dictionaries

    22. 9.1 Python Dictionaries

    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.
    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.
    टीवी-जी
    8मिन
    1 अक्टू॰ 2016
  • 23. 9.2 Building Histograms

    23. 9.2 Building Histograms

    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.
    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.
    टीवी-जी
    9मिन
    1 अक्टू॰ 2016
  • 24. 9.3 Counting Words in Text

    24. 9.3 Counting Words in Text

    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.
    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.
    टीवी-जी
    12मिन
    1 अक्टू॰ 2016
  • Python for Everybody
    20161 सीज़न
    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.
    निर्माता और कलाकार
    निर्माता
    Dr. Charles Russell Severance
    कलाकार
    Dr. Charles Russell Severance
    स्टूडियो
    Dr. Chuck Films
    समीक्षाएं
    5.0 out of 5 stars

    6 ग्लोबल रेटिंग

    1. 5 star
      100%
    2. 4 star
      0%
    3. 3 star
      0%
    4. 2 star
      0%
    5. 1 star
      0%
    सभी समीक्षाएं देखें
    ऑडियो की भाषाएं
    English
    सबटाइटल
    English [CC]
    ऑर्डर देकर या देखकर, आप हमारी शर्तों से सहमत होते हैं. Amazon.com Services LLC द्वारा बेचा जाता है.

    फ़ीडबैक

    सहायता