Python for Everybody ONLINE ANSCHAUEN: STREAMEN, LEIHEN ODER KAUFEN

Jetzt Python for Everybody bei Amazon Prime Instant Video als download kaufen.
Amazon Prime Instant Video Logo
Staffeln
1, 15
2 Staffeln verfügbar AKTION: Jetzt für nur 0,99 €/Woche Amazon Prime komplett

Staffel 1

In Flatrate
Nein
ansehen
Episode 1
Why Program
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Why Program - Inhaltsangabe:

Explore the nature of programming and how programming a computer is different than using a computer.
Episode 2
Hardware Architecture
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Hardware Architecture - Inhaltsangabe:

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.
Episode 3
Python as a Language
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Python as a Language - Inhaltsangabe:

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.
Episode 4
What do we Say to Python?
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - What do we Say to Python? - Inhaltsangabe:

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.
Episode 5
2.1 Building Blocks of Python
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 2.1 Building Blocks of Python - Inhaltsangabe:

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.
Episode 6
2.2 Expressions
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 2.2 Expressions - Inhaltsangabe:

We look at how we use various numerical and string operations to compute new information and store the new values in variables.
Episode 7
3.1 If-Then-Else
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 3.1 If-Then-Else - Inhaltsangabe:

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).
Episode 8
3.2 More Conditional Statements
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 3.2 More Conditional Statements - Inhaltsangabe:

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.
Episode 9
4.1 Using Pre-Defined Functions
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 4.1 Using Pre-Defined Functions - Inhaltsangabe:

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.
Episode 10
4.2 Building our Own Functions
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 4.2 Building our Own Functions - Inhaltsangabe:

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.
Episode 12
5.2 Definite Loops
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 5.2 Definite Loops - Inhaltsangabe:

We learn how to use the 'for' statement in Python to loop through a set of data.
Episode 14
5.4 Loop Techniques
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 5.4 Loop Techniques - Inhaltsangabe:

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.
Episode 15
6.1 Storing Text Data in Strings
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 6.1 Storing Text Data in Strings - Inhaltsangabe:

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.
Episode 16
6.2 String Operations
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 6.2 String Operations - Inhaltsangabe:

We learn how to extract substrings using slicing, and use the string library to perform common data extraction operations with strings.
Episode 17
7.1 Reading Files
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 7.1 Reading Files - Inhaltsangabe:

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.
Episode 18
7.2 Processing Data in Files
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 7.2 Processing Data in Files - Inhaltsangabe:

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.
Episode 19
8.1 Creating and Using Lists
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 8.1 Creating and Using Lists - Inhaltsangabe:

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.
Episode 20
8.2 Manipulating Lists
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 8.2 Manipulating Lists - Inhaltsangabe:

We learn about list slicing, list searching, and using pre-defined functions with lists.
Episode 21
8.3 Strings and Lists
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 8.3 Strings and Lists - Inhaltsangabe:

We learn how to parse strings pull sub-strings out of a string using the split() function.
Episode 22
9.1 Python Dictionaries
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 9.1 Python Dictionaries - Inhaltsangabe:

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.
Episode 23
9.2 Building Histograms
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 9.2 Building Histograms - Inhaltsangabe:

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.
Episode 24
9.3 Counting Words in Text
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 9.3 Counting Words in Text - Inhaltsangabe:

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.
Episode 25
10.1 Understanding Tuples
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 10.1 Understanding Tuples - Inhaltsangabe:

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.
Episode 26
10.2 Sorting Data
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 10.2 Sorting Data - Inhaltsangabe:

We look at how we sort lists, dictionaries, and lists of tuples in Python.
Episode 27
11.1 Introduction to Regular Expressions
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 11.1 Introduction to Regular Expressions - Inhaltsangabe:

We look at the syntax of regular expressions and how to use them to search through text data.
Episode 28
11.2 Matching and Extracting Data
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 11.2 Matching and Extracting Data - Inhaltsangabe:

In this segment we learn to extract data from strings after a regular expression has found a match.
Episode 29
11.3 String Parsing with Regular Expressions
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 11.3 String Parsing with Regular Expressions - Inhaltsangabe:

We look at how some of the string parsing we have done in earlier chapters can be easily done with regular expressions.
Episode 30
12.1 Network Technology (TCP/IP)
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 12.1 Network Technology (TCP/IP) - Inhaltsangabe:

We take a very brief look at how software communicates across the Internet using TCP/IP.
Episode 31
12.2 Hypertext Transport Protocol (HTTP)
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 12.2 Hypertext Transport Protocol (HTTP) - Inhaltsangabe:

In this section we look at the HTTP protocol that is used to move documents between web servers and web browsers.
Episode 32
12.3 Building a Web Browser in Python
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 12.3 Building a Web Browser in Python - Inhaltsangabe:

We write a simple Python program that connects to a web server and retrieves a web document. It is a very simple web browser.
Episode 33
12.4 Unicode Characters and Strings
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 12.4 Unicode Characters and Strings - Inhaltsangabe:

We explore how characters are encoded when they are transported across the network.
Episode 34
12.5 Retrieving Web Pages
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 12.5 Retrieving Web Pages - Inhaltsangabe:

We write an even simpler Python program to retrieve a web page using the urllib library in Python.
Episode 35
12.6 Parsing Web Pages
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 12.6 Parsing Web Pages - Inhaltsangabe:

Now we will look at the HypertextMarkup Language (HTML) that we retrieved using Python and extract links from that HTML. We are slowly building a very simple web search engine.
Episode 36
13.1 Data on the Web
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 13.1 Data on the Web - Inhaltsangabe:

We look at two different ways to format data for transmission across the network including JavaScript Object Notation (JSON) and eXtended Markup Language (XML).
Episode 37
13.2 eXtensible Markup Language (XML)
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 13.2 eXtensible Markup Language (XML) - Inhaltsangabe:

We look at how data is represented using the XML format.
Episode 38
13.3 XML Schema
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 13.3 XML Schema - Inhaltsangabe:

We look at how we can use XML Schema to determine whether or not a particular bit of XML is valid.
Episode 39
13.4 JavaScript Object Notation
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 13.4 JavaScript Object Notation - Inhaltsangabe:

We learn about the popular JSON data format and how to handle the JSON data in Python.
Episode 40
13.5 Service Oriented Approach (SOA)
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 13.5 Service Oriented Approach (SOA) - Inhaltsangabe:

We talk briefly about how applications can be built over time to depend on services provide other applications.
Episode 41
13.6 Using Application Programming Interfaces
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 13.6 Using Application Programming Interfaces - Inhaltsangabe:

We explore using a Google API that can be used to query location data and parse the JSON that is returned.
Episode 42
13.7 Securing API Requests
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 13.7 Securing API Requests - Inhaltsangabe:

We explore the use of OAuth to communicate sign requests to establish identity when using the Twitter API.
Episode 43
14.1 Object Oriented Definitions and Terminology
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 14.1 Object Oriented Definitions and Terminology - Inhaltsangabe:

We look at how Python mentions objects in its documentation as well as talk about why philosophy of object-oriented programming. We explore some OOP terms like class, object, instance, method, and attribute.
Episode 44
14.2 Our First Class and Object
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 14.2 Our First Class and Object - Inhaltsangabe:

We look at how use create a new class in Python and then construct a new object from that class. We also look at some of the Python objects (like strings) that we have been using all along.
Episode 45
14.3 Object Life Cycle
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 14.3 Object Life Cycle - Inhaltsangabe:

We look at how we as the developers of a Python class can interact with the moment of construction and destruction of various objects created using the class.
Episode 46
14.4 Object Inheritance
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 14.4 Object Inheritance - Inhaltsangabe:

We look at how we can make a new class by inheriting all of the attributes and methods of a parent class and then extend the new class with additional attributes and methods.
Episode 47
15.1 Relational Databases
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 15.1 Relational Databases - Inhaltsangabe:

We look at the history of database systems, learn the terminology of database systems, and review some of the common database systems that are in use.
Episode 48
15.2 Single Table SQL
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 15.2 Single Table SQL - Inhaltsangabe:

We learn about how we can use Structured Query Language (SQL) to insert (create), read, update, and delete data in a single database table.
Episode 49
15.3 Building a Relational Model
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 15.3 Building a Relational Model - Inhaltsangabe:

We look at how we can take the various data elements that will be modeled in an application and distribute them across several tables efficiently. We learn about the basic rules of database design.
Episode 50
15.4 Database Key Types
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - 15.4 Database Key Types - Inhaltsangabe:

We look at primary keys, logical keys and foreign keys. We look at how foreign keys are represented in the database.

Staffel 15

In Flatrate
Nein
ansehen
Episode 1
Relational Databases
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Relational Databases - Inhaltsangabe:

We look at how we map a logical database model to a physical database model by adding columns and constraints to model the table-to-table relationships.
Episode 2
Single Table SQL
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Single Table SQL - Inhaltsangabe:

We look at how to reconstruct complete views of the data when data is properly distributed across multiple tables and connected via foreign keys. We learn the JOIN operation and ON clause in SQL.
Episode 3
Building a Relational Model
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Building a Relational Model - Inhaltsangabe:

We look at how we can take the various data elements that will be modeled in an application and distribute them across several tables efficiently. We learn about the basic rules of database design.
Episode 4
Database Key Types
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Database Key Types - Inhaltsangabe:

In this assignment we make use of the Google GeoCoding API to look up addresses, store the data in a database and then use Google Maps to visualize the data.
Episode 5
Representing Relationships in Database Tables
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Representing Relationships in Database Tables - Inhaltsangabe:

We build a web crawler that retrieves web pages and links from those pages an copies the pages into the database. Once we have retrieved our web data we run a simple Page Rank algorithm on the data and visualize the results.
Episode 6
Many-to-Many Relationships
Mieten
Kaufen
SD 0.99 €
HD 0.99 €
ansehen

Python for Everybody - Many-to-Many Relationships - Inhaltsangabe:

We look at how to build a connector table to represent many-to-many relationships such as students and courses in database tables. We also learn about composite primary keys.

Python for Everybody - stream

serie, Laufzeit: 0 Min, Genre: Keine Angabe
Original Titel Python for Everybody
Genre Keine Angabe
Altersfreigabe Keine Angabe
Veröffentlicht Keine Angabe
Hauptdarsteller Keine Angabe
Regisseur Keine Angabe
Drehbuch Keine Angabe
Produziert von Keine Angabe
Sprache Deutsch
Stichworte Keine Angabe
Angelegt 2017-02-28