Python Fundamentals Course Videos

14 videos in this course

Course Overview Video from Python Fundamentals Course Videos
Play Python Fundamentals Course Overview Video
Course Overview

Python is an easy to learn yet very powerful programming language. This course has 15 self paced lessons and in each of the lessons you will write many programs to apply the concepts that are introduced in the unit. We're gonna end the course by creating a really interesting game together

Introduction Video from Python Fundamentals Course Videos
Play Python Fundamentals Introduction Video
Introduction

Let's start by writing our very first program. It's a very short program that displays “hello w. We then introduce operators and comments in Python.

Data Types Video from Python Fundamentals Course Videos
Play Python Fundamentals Data Types Video
Data Types

VARIABLES are location inside the computer's memory that is dedicated to storing specific data values. We review Variables and the different Data Types in Python.

Comparisions Video from Python Fundamentals Course Videos
Play Python Fundamentals Comparisions Video
Comparisions

In this Unit we introduce Comparison Operators and If Then Statements and how to use them to control the flow of our code by checking for certain conditions.

Boolean Operators Video from Python Fundamentals Course Videos
Play Python Fundamentals Boolean Operators Video
Boolean Operators

In this unit, we're going to learn more about BOOLEAN OPERATORS, they can help us combine different expressions in different ways, making our code cleaner and efficient.

While Loops Video from Python Fundamentals Course Videos
Play Python Fundamentals While Loops Video
While Loops

In this unit, we're going to learn about LOOPS. LOOPS are a technique that repeats execution of the same piece of code, instead of writing this piece of code over and over and over again in our program.

For Loops Video from Python Fundamentals Course Videos
Play Python Fundamentals For Loops Video
For Loops

FOR LOOPS are very useful when you want to go over a list or string and check its elements one by one. Lets learn more.

Python Inputs Video from Python Fundamentals Course Videos
Play Python Fundamentals Python Inputs Video
Python Inputs

Python provides an easy way to take input from the keyboard. Quite similar to the print statement that output results on the council. Python has built in functions called INPUT. Let’s learn more.

Simple Calculator Video from Python Fundamentals Course Videos
Play Python Fundamentals Simple Calculator Video
Simple Calculator

In this unit, we're going to create a very simple calculator, to helpl help us recap concepts like variables, comparisons, input, and casting.

Strings Video from Python Fundamentals Course Videos
Play Python Fundamentals Strings Video
Strings

We introduce Strings and Arrays and how to use them in Python as well as string manipulation techniques.

Advanced Calculator Video from Python Fundamentals Course Videos
Play Python Fundamentals Advanced Calculator Video
Advanced Calculator

In the last unit, we learnt how to modify strings using inbuilt Python functions. In this unit, we're going to use some of those techniques to create an advanced calculator.

Functions Video from Python Fundamentals Course Videos
Play Python Fundamentals Functions Video
Functions

An important technique when we write programs is to not repeat ourselves. A Function is a set of code that is grouped together in terms of functionality, and has a name.

CS Library Video from Python Fundamentals Course Videos
Play Python Fundamentals CS Library Video
CS Library

A Library is a collection of functions that can be used by other coders. Today, we're going to learn about libraries, specifically a library called CS1 lib.

User Inputs Video from Python Fundamentals Course Videos
Play Python Fundamentals User Inputs Video
User Inputs

Instructions for computers consists of two parts. The code written by the programmers provides general instructions, and INPUT from the user provides specific instructions. Lets learn more.

Loading...