Hi, what do you want to do?
Curated Video
Python Assignment 4
In this video we discuss the Assignment 4 Question: Create a Loop that will run for THREE times. Each time the loop runs, get input from the user. Inform the user if the number entered was an Even or Odd Number. This question reviews the...
Curated Video
Python Assignment 5
In this assignment, you are required to do the following: Prompt the user to enter the number of stars to be printed. Once the value is obtained, print a square of "stars" with each row and each column having the number of stars entered...
Curated Video
Python Lesson16
In this lesson, we explore Strings. We first understand how to calculate the length of a string. We then concatenate strings together. After that, we see how we can extract subsets of a string.
Curated Video
Python Lesson18
In this lesson, we learn how to use the find function to search for subsets in a string. We also look at how to replace subsets in a string. Ready to be a Python Expert?
Curated Video
Python Lesson19
Now we look at the title(), upper() and lower() functions that we can use for strings. Learn how to check for the case of a string and do conversions between the different cases.
Curated Video
Python Assignment 7
In this assignment, you will learn how to search for the index of multiple instances of a subset in a string.
Curated Video
Python Assignment 8
This is a Number Guessing Game! Prompt the user to enter a number within the range and keep giving hints to help the player get the correct answer! A great way to revise all your basic Python concepts!
Curated Video
Python Lesson 21
Functions are a great way to modularize your code and make it easily reusable. Let's get started with Functions in Python!
Curated Video
Python Lesson 22
Learn how to create functions with multiple inputs. With this, you will be able to easily make use of functions to modularize your code.
Curated Video
Factorial Operation using Recursion!
Learn how to perform the Factorial Operation using Recursion! A must-watch if you want to know the important concepts of Recursion.
Curated Video
Analyze how a Recursive Function Behaves!
In this video, we will relook at the recursive approach to compute the Factorial of a number. We will analyze the recursive calls in-depth to understand what is happening.
Curated Video
Python Assignment 1
This video guides you through the steps to create a simple Calculator application. Make sure you have tried it first before looking at the solution. :)
Curated Video
Python Lesson 4
In this lesson, we learn how we can use the split() functionality together with input() so that we can capture several input parameters at the same time.
Curated Video
Python Lesson 6
Here we explore the "if-else" statements we can use in Python for decision making.
Curated Video
Python Assignment 2
In this video we discuss the Assignment 2 question which requires you to capture two numbers from the user and print out the bigger number.
Curated Video
Python Lesson 7
In this video we look at the if, elif, else sequence of checks. This extends upon the Assignment 2 code that you have done.
Curated Video
Python Lesson10
In this video, you will be introduced to the for-loop in Python. See how easy it is to get it done!
Curated Video
Python Lesson11
In this lesson, we see how we can set the start and step values for the range parameters. Want to be a Python Pro?
Curated Video
Python Lesson 12
We now look at Nested for-loops. Let's learn how the different loop counters change as we go through the code.
Curated Video
Python Lesson14
In this lesson, we understand the impact of the continue and break statements in a nested loop.
Curated Video
Python Lesson15
In this video we explore the "type" of variables. We also see how to perform a rounding to the nearest integer.
Curated Video
Python Lesson 1 (Old)
This video provides installation instructions for Python. Once that is done, we play around with the development tool to have an idea on how Python works with numbers and characters.
Curated Video
Python Lesson #1: Install and Get Started
The first thing we need to do to get started with Python is to download the software and install it. Once we are done with that, explore and get excited! :)
Curated Video
Python Lesson 3
In this video, you will learn how to use the "input" command to capture the user's input. You will also learn how to perform casting to perform a conversion between different data types.