Python for Everybody (py4e.com)

የቻናል ዝርዝሮች

Python for Everybody (py4e.com)

Python for Everybody (py4e.com)

ፈጣሪ: Dr. Charles Russell Severance

These are the lectures to supplement the textbook 'Python for Everybody: Exploring Information' and its associated web site py4e.com

EN United States ትምህርት

የቅርብ ጊዜ ክፍሎች

86 ክፍሎች
1.1 Why Program

1.1 Why Program

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

2016-09-30 18:00:00 750
ማውረድ
1.2 Hardware Architecture

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...

2016-09-30 17:00:00 735
ማውረድ
1.3 Python as a Language

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 t...

2016-09-30 16:00:00 468
ማውረድ
1.4 What do we Say to Python?

1.4 What do we Say to Python?

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.

2016-09-30 15:00:00 765
ማውረድ
Installing Python 3 on a Macintosh

Installing Python 3 on a Macintosh

Installing Python 3 on a Macintosh

2016-09-30 14:00:00 262
ማውረድ
Code Walkthrough: Hello World

Code Walkthrough: Hello World

Code Walkthrough: Hello World

2016-09-30 13:00:00 312
ማውረድ
2.1 Building Blocks of Python

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 fu...

2016-09-30 12:00:00 581
ማውረድ
2.2 Expressions

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.

2016-09-30 11:00:00 1193
ማውረድ
Code Walkthrough: Exercise 2.2

Code Walkthrough: Exercise 2.2

Code Walkthrough: Exercise 2.2

2016-09-30 10:00:00 371
ማውረድ
Code Walkthrough: Exercise 2.3

Code Walkthrough: Exercise 2.3

Code Walkthrough: Exercise 2.3

2016-09-30 09:00:00 468
ማውረድ
3.1 If-Then-Else

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 expressio...

2016-09-30 08:00:00 666
ማውረድ
3.2 More Conditional Statements

3.2 More Conditional Statements

In this video 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...

2016-09-30 07:00:00 831
ማውረድ
Code Walkthrough: Exercise 3.1

Code Walkthrough: Exercise 3.1

Code Walkthrough: Exercise 3.1

2016-09-30 06:00:00 726
ማውረድ
Code Walkthrough: Exercise 3.2

Code Walkthrough: Exercise 3.2

Code Walkthrough: Exercise 3.2

2016-09-30 05:00:00 565
ማውረድ
4.1 Using Pre-Defined Functions

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.

2016-09-30 04:00:00 629
ማውረድ
4.2 Building our Own Functions

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.

2016-09-30 03:00:00 755
ማውረድ
Code Walkthrough: Exercise 4.6

Code Walkthrough: Exercise 4.6

Code Walkthrough: Exercise 4.6

2016-09-30 02:00:00 607
ማውረድ
5.1 The Basics of Loops

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...

2016-09-30 01:00:00 598
ማውረድ
5.2 Definite Loops

5.2 Definite Loops

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

2016-09-30 00:00:00 411
ማውረድ
5.3 Patterns for Making Loops

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 ma...

2016-09-29 23:00:00 523
ማውረድ
5.4 Loop Techniques

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'...

2016-09-29 22:00:00 1127
ማውረድ
Worked Exercise: Exercise 5.1

Worked Exercise: Exercise 5.1

Worked Exercise: Exercise 5.1

2016-09-29 21:00:00 510
ማውረድ
6.1 Storing Text Data in Strings

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.

2016-09-29 20:00:00 642
ማውረድ
6.2 String Operations

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.

2016-09-29 19:00:00 1124
ማውረድ
Worked Example: Exercise 6.5

Worked Example: Exercise 6.5

Worked Example: Exercise 6.5

2016-09-29 18:00:00 506
ማውረድ
7.1 Reading Files

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.

2016-09-29 17:00:00 474
ማውረድ
7.2 Processing Data in Files

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 t...

2016-09-29 16:00:00 826
ማውረድ
Worked Example: Exercise 7.1

Worked Example: Exercise 7.1

Worked Example: Exercise 7.1

2016-09-29 15:00:00 583
ማውረድ
8.1 Creating and Using Lists

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.

2016-09-29 14:00:00 656
ማውረድ
8.2 Manipulating Lists

8.2 Manipulating Lists

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

2016-09-29 13:00:00 576
ማውረድ
8.3 Strings and Lists

8.3 Strings and Lists

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

2016-09-29 12:00:00 482
ማውረድ
Worked Exercise: Chapter 8

Worked Exercise: Chapter 8

Strings, Files, Lists and the Guardian Pattern.

2016-09-29 11:00:00 693
ማውረድ
9.1 Python Dictionaries

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 diction...

2016-09-29 10:00:00 590
ማውረድ
9.2 Building Histograms

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 dict...

2016-09-29 09:00:00 566
ማውረድ
9.3 Counting Words in Text

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 i...

2016-09-29 08:00:00 683
ማውረድ
Worked Exercise: Dictionaries

Worked Exercise: Dictionaries

Worked Exercise: Dictionaries

2016-09-29 07:00:00 1463
ማውረድ
10.1 Understanding Tuples

10.1 Understanding Tuples

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.

2016-09-29 06:00:00 587
ማውረድ
10.2 Sorting Data

10.2 Sorting Data

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

2016-09-29 05:00:00 739
ማውረድ
Worked Example: Sorting Dictionaries

Worked Example: Sorting Dictionaries

Worked Example: Sorting Dictionaries

2016-09-29 04:00:00 605
ማውረድ
11.1 Introduction to Regular Expressions

11.1 Introduction to Regular Expressions

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

2016-09-29 03:00:00 646
ማውረድ
0:00
0:00
Episode
home.no_title_available
home.no_channel_info