Python Overview

 Python Overview

This course will teach you the basics and advanced concepts of Python programming.

Python Prerequisites

What do you need before learning Python?

  1.  Computer literacy.
  2.  Knowledge of installing a software.
  3.  A compiler.
✅Tip! Python is easy and fun to learn.

Much Easier with Examples

This course contains hundreds of examples, each with the "Try It Yourself" feature.

This feature makes learning Python much easier, faster and enjoyable.

Python is Easy

To learn Python, you don't need any prior knowledge or experience on programming.

Python is human readable, making it easier to understand.

Take a look at this example:

x = 4
y = 3
sum = x + y
print(sum)

Although we have not taught you how to code Python yet, you can still easily pick up that:
  1.  x is 4
  2.  y is 3
  3.  sum is the addition of x and y and
  4.  sum will be printed on the screen
✅Tip! Click the right arrow below to proceed to the next lesson.

Comments