top of page
Introduction to
Python
1 min read
1: To Those New to Programming
Welcome to Python! Whether you are completely new to programming, or just new to Python, hopefully I can teach you something helpful.
2 min read
2: Installing Python and PyCharm IDE
Before we start coding, we need to actually download the Python software, and the program in which we will write our code. Although you...
1 min read
3: Print Statements
In this tutorial we are introduced to our first function, print, and we write our first program.
4 min read
4: Variables, Data Types, and Operations
In this tutorial we explore Python's variables, data types, and operators which will lay the foundation of our future projects.
5 min read
5: If-else Branches, Code Blocks, and Boolean Operators
If statements are the first tool we will learn that will allow some flexibility with our code, and will be an important building block to...
6 min read
6: Loops, Break, and Continue
In this tutorial we learn about while and for loops.
6 min read
7: Functions
In this tutorial we learn how to create our own custom functions.
8 min read
8: Array-like Structures
In this tutorial we are introduced to Python's array-like structures: lists, tuples, and dictionaries.
5 min read
9: Introduction Object-Oriented Programming: Classes and Objects
In this tutorial we take our first dip into object-oriented programming.
bottom of page