Python

Python 3 min read

Lesson 7: Python Lists and Tuples

When you write code, you rarely work with just a single piece of data. Usually, you need to...

Read Tutorial →
Python 3 min read

Lesson 6: Python Functions

As your Python programs grow larger, you will quickly realize that writing the exact same logic in multiple...

Read Tutorial →
Python 3 min read

Lesson 5: Python Loops

Imagine having to write the exact same line of code one hundred times. It would be tedious, visually...

Read Tutorial →
Python 1 min read

Lesson 2: Variables and Data Types

Storing Information In Python, variables are created the moment you first assign a value to them. There are...

Read Tutorial →
Python 1 min read

Lesson 1: Setting Up Python

Welcome to Python Before we dive into logic and algorithms, we need to set up our development environment....

Read Tutorial →