Python Overview
This course will teach you the basics and advanced concepts of Python programming.
Python Prerequisites
What do you need before learning Python?
- Computer literacy.
- Knowledge of installing a software.
- A compiler.
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:
- x is 4
- y is 3
- sum is the addition of x and y and
- sum will be printed on the screen
✅Tip! Click the right arrow below to proceed to the next lesson.
Comments
Post a Comment