Media Summary: If statements are how we conditionally run lines of code. Comparison Operators: (==, !=, <, >, <=, >=) Logical Operators (for compound conditions): (and, or, not) Functions are a awesome because they give us ways to dynamically reuse code that we write.

Python 3 Basics 13 34 - Detailed Analysis & Overview

If statements are how we conditionally run lines of code. Comparison Operators: (==, !=, <, >, <=, >=) Logical Operators (for compound conditions): (and, or, not) Functions are a awesome because they give us ways to dynamically reuse code that we write. We can attach else blocks to our if blocks. When the if statement is false, the only the else block runs. If the statement is true, only ... Lists are ways to represent many points of similar data under one variable. Tuples are a data type that are similar to lists, but they have a few important differences.

Comments are little notes you can put in your code. Here you learn to splice a list into a smaller list, split a string into a list, and combine a list into a string. while loops repeat a block of code as long as a specified condition is true. In this crash course I'll be teaching you the for loops repeat a block of code for every item in the given list. Scope is a counter-intuitive property of programming, but one that is important to know.

Strings are the data type that hold text.

Photo Gallery

Python 3 Basics (13/34) - if
Python 3 Basics (16/34) - Comparison operators, compound conditions and nesting
Python 3 Basics (20/34) - Functions
Python 3 Basics (14/34) - else
Python 3 Basics (11/34) - Lists
Python 3 Basics (23/34) - Tuples
Python 3 Basics (5/34) - Comments
Python 3 Basics (12/34) - Splice, split() and join()
Python 3 Basics (17/34) - while loops
Learn Python in Less than 10 Minutes for Beginners (Fast & Easy)
Python 3 Basics (18/34) - for loops
Python 3 Basics (22/34) - Scope
View Detailed Profile
Python 3 Basics (13/34) - if

Python 3 Basics (13/34) - if

If statements are how we conditionally run lines of code.

Python 3 Basics (16/34) - Comparison operators, compound conditions and nesting

Python 3 Basics (16/34) - Comparison operators, compound conditions and nesting

Comparison Operators: (==, !=, <, >, <=, >=) Logical Operators (for compound conditions): (and, or, not)

Python 3 Basics (20/34) - Functions

Python 3 Basics (20/34) - Functions

Functions are a awesome because they give us ways to dynamically reuse code that we write.

Python 3 Basics (14/34) - else

Python 3 Basics (14/34) - else

We can attach else blocks to our if blocks. When the if statement is false, the only the else block runs. If the statement is true, only ...

Python 3 Basics (11/34) - Lists

Python 3 Basics (11/34) - Lists

Lists are ways to represent many points of similar data under one variable.

Python 3 Basics (23/34) - Tuples

Python 3 Basics (23/34) - Tuples

Tuples are a data type that are similar to lists, but they have a few important differences.

Python 3 Basics (5/34) - Comments

Python 3 Basics (5/34) - Comments

Comments are little notes you can put in your code.

Python 3 Basics (12/34) - Splice, split() and join()

Python 3 Basics (12/34) - Splice, split() and join()

Here you learn to splice a list into a smaller list, split a string into a list, and combine a list into a string.

Python 3 Basics (17/34) - while loops

Python 3 Basics (17/34) - while loops

while loops repeat a block of code as long as a specified condition is true.

Learn Python in Less than 10 Minutes for Beginners (Fast & Easy)

Learn Python in Less than 10 Minutes for Beginners (Fast & Easy)

In this crash course I'll be teaching you the

Python 3 Basics (18/34) - for loops

Python 3 Basics (18/34) - for loops

for loops repeat a block of code for every item in the given list.

Python 3 Basics (22/34) - Scope

Python 3 Basics (22/34) - Scope

Scope is a counter-intuitive property of programming, but one that is important to know.

Python 3 Basics (8/34) - Strings

Python 3 Basics (8/34) - Strings

Strings are the data type that hold text.