Home ยป Learn How To Code With Python

Learn how to code with Python – Lesson 5 – Basics wrapup

Basic code wrapup
Basic code?

In this lesson, I bring together the few basics discussed in the previous videos and this video. To do this I will discuss one more important principle in programming and that is:

Datatypes

I have already introduced some data types like strings, integers, and floats. But there are more types you need to know about before we can continue.

Continue reading “Learn how to code with Python – Lesson 5 – Basics wrapup”

Learn how to code with python: Lesson 3 – Working with numbers

Working with Numbers in Python!
Working with Numbers in Python!

Below is lesson number 3 in the series: Learn how to code with Python. In this lesson I explain the basic things you need to know to start working productively with numbers in Python.

In the video I talk about the different types of numbers:

  • Integers, or int in Python
  • Floating point number, or float in Python

You can use the Python type() function to see the type a number holds.
For example:

Continue reading “Learn how to code with python: Lesson 3 – Working with numbers”

Learn how to code with python: Lesson 1 – Hello World!

Learn How to Code With Python
Learn How to Code With Python – Lesson 01

In this first lesson of my free video course: Learn how to code with Python, you will write your first python program. You may think that the program isn’t much, but actually, it is a big step to get code to run for the first time in a new programming language. It is also kind of a tradition that whenever you are introduced to a new language you start with printing a message to the screen, that says: “Hello World!”.

Continue reading “Learn how to code with python: Lesson 1 – Hello World!”