Python 3 Beginner
0.1 Overview
This course will teach you the basics and advanced concepts of Python Programming
0.1.1 Prerequisites
What do you need before learning Python?
- Computer Literacy
- Knowledge of installing a software
- A compiler
0.1.2 Python is Easy
- To learn Python, you don’t need any prior knowledge of experience on programming.
- Python is human readable, making it easier to understand.
- Take alook at this example
= 4
x = 3
y = x + y
summ print(summ)
7
Although we have not taught you how to code in Python yet, you can still easily pick up what the code is doing
0.2 What is Python
- Python is a programming language.
- Python is one of the most popular programming languages
0.2.1 Who created Python?
Python was created by Guido van Rossum and it was first implemented in 1989
0.2.2 What is Python used for?
Python is used for:
- Web Development
- Machine Learning
- Data Science
- Scripting
- And many more
0.2.3 What is the latest version of Python?
- Python 3 is the latest version of Python
- This tutorial is based on the standards of Python 3