The heaven for Technology Learner
Python Language-Overview
Introduction to Python
Python is an easy-to-learn and powerful Object-Oriented Programming language. It is a high-level programming language.It was created by Guido van Rossum, and first released on February 20, 1991
Why Python?
I. Easy to Use: Python is comparatively an easier-to-use language as compared to other programming languages.
II. Expressive Language: The syntax of Python is closer to how you would write pseudocode. Which makes it capable of expressing the code’s purpose better than many other languages.
III. Interpreted Language: Python is an interpreted language; this means that the Python installation interprets and executes the code a line at a time.
IV. Python is one of the most popular programming languages to be used in Web Development owing to the variety of Web Development platforms built over it like Django, Flask, etc
It is used for:
I. web development (server-side)
II. software development
III. mathematics
IV. system scripting.
Why Python?
I. Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc).
II. Python has a simple syntax similar to the English language.
III. Python has a syntax that allows developers to write programs with fewer lines than some other programming languages.
IV. Python runs on an interpreter system, meaning that code can be executed as soon as it is written. This means that prototyping can be very quick.
V. Python can be treated in a procedural way, an object-oriented way or a functional way.
Good to know
I. The most recent major version of Python is Python 3, which we shall be using in this tutorial. However, Python 2, although not being updated with anything other than security updates, is still quite popular.
II. In this tutorial, Python will be written in a text editor. It is possible to write Python in an Integrated Development Environment, such as Thonny, Pycharm, Netbeans, or Eclipse which are particularly useful when managing larger collections of Python files.
Python Syntax compared to other programming languages
I. Python was designed for readability and has some similarities to the English language with influence from mathematics.
II. Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses.
III. Python relies on indentation, using whitespace, to define scope; such as the scope of loops, functions, and classes. Other programming languages often use curly brackets for this purpose.