Posts

Showing posts from November, 2024

LGS

Image
  25 Jul   (Edited 4 Aug) Introduction To Python.txt Introduction to Python Python is a widely used general-purpose, high-level programming language. It was created by Guido van Rossum, and released in 1991. It is used as a support language for software developers. Python ranks among the most popular and fastest-growing languages in the world. World's biggest app "Instagram" uses Python on its backend. Uber also uses Python somewhere as its backend language. Python is popular because: 1. Emphasis is on code readability, shorter codes, and ease of writing. 2. Closer to the English language and easy to Learn. 3. Inbuilt functions for almost all of the frequently used concepts. 4. Logical concepts are expressed in fewer lines of code in comparison to other languages such as C++ or Java. Python is an interpreted language and a python interpreter is a program that knows how to execute a python code, it converts the code written in Python into a language that our computer ...