Introduction to Python and Flask

A tutorial on creating simple web application using Python and Flask. This include introduction to basic Python syntax.

View the Project on GitHub trashvin/learning-basic-python-and-flask

Lesson 01 : Why Python?

What is Python?

Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small- and large-scale projects.

Guido van Rossum began working on Python in the late 1980s as a successor to the ABC programming language and first released it in 1991 as Python 0.9.0. The current version is now at 3.10.4.

More information can be obtained from the official site.

Why use Python?

Note : these reasons were taken from THIS SITE.


Home | Next