Introduction
  • Best Way to Learn Python
  • Overview of the Course and the 10 Apps
  • Preview of the 10 Apps
  • Installing Python 3 and the IDE (Windows, Mac, and Linux)
  • Optimizing the Environment for Python
  • How to Contact Me
  • Important - Do Not Skip
  • Check Your Current Skills
The Basics: Getting Started with Python
  • Writing Our First Python Program
  • Variables and their Use in a Program
  • Your First Python Exercise (E)
  • Assign Multiple Values and Print (E)
  • The Python Shell
  • Summary
The Basics: Data Types
  • Quick Info
  • Simple Types: Integers, Strings, and Floats
  • Create Integers, Strings, and Floats (E)
  • Sum Up Numbers (E)
  • List Types
  • Ranges
  • Create List (E)
  • Create Complex List (E)
  • Attributes
  • Did You Know?
  • How to Find Out What Code You Need
  • Bonus: Steps of Learning Python
  • Calculate Maximum (E)
  • Count Values (E)
  • Modify String (E)
  • Dictionary Types
  • Did You Know?
  • Create Dictionary (E)
  • Tuple Types
  • Create Tuple (E)
  • Create Complex Dictionary (E)
  • How to Use Datatypes in the Real World?
  • Did You Know?
  • Summary: Integers, Floats, Lists, Dictionaries, Tuples, dir, help
The Basics: Operations with Data Types
  • Python Shell and Terminal Tip
  • List Reminder
  • More Operations with Lists
  • Append Item to List (E)
  • Remove Item from List (E)
  • Remove Three Items From List (E)
  • Accessing List Items
  • Access Item (E)
  • Access Items (E)
  • Access and Append (E)
  • Accessing List Slices
  • Accessing Items and Slices with Negative Indexes
  • Accessing Characters and Slices in Strings
  • Accessing and Slicing Lists and Strings
  • Slicing a List, 2nd to 4th (E)
  • Slicing a List, First Three (E)
  • Slicing a List, Last Three (E)
  • Dictionary Reminder
  • Accessing Items in Dictionaries
  • Tip: Converting Between Datatypes
  • Summary: Positive/Negative Indexes, Slicing
The Basics: Functions and Conditionals
  • Creating Your Own Functions
  • Calculate Length (E)
  • Square Area (E)
  • Volume Converter (E)
  • Print or Return?
  • Intro to Conditionals
  • If Conditional Example
  • Bonus Code: Using "and" and "or" in a Conditional
  • Conditional Explained Line by Line
  • Conditionals Quiz
  • More on Conditionals
  • Password Controller (E)
  • Warm or Cold (E)
  • Elif Conditionals
  • White Space
  • Hot, Warm, Cold (E)
  • Summary: Functions and Conditionals
The Basics: Processing User Input
  • User Input
  • String Formatting
  • String Formatting with Multiple Variables
  • String Formatting (E)
  • String Formatting and Uppercase (E)
  • Summary: Processing User Input
The Basics: Loops
  • For Loops: How and Why
  • Loop Over Colors (E)
  • Loop Over Big Colors (E)
  • Loop Over Integer Colors (E)
  • Loop Over Int and Big Colors (E)
  • For Loop Over a Function
  • Did You Know?
  • Looping Through a Dictionary
  • Bonus Code: Dictionary Loop and String Formatting
  • Loop Over Dictionary and Format (E)
  • Loop Over Dictionary and Replace (E)