Skip to main content
  1. Courses/
  2. Python/

Introduction to Python

·241 words·2 mins· loading · loading ·
Russell Chubb
Author
Russell Chubb
Working at the intersection of Technology and Art.
Learn Python - This article is part of a series.
Part 1: This Article

Python is an interpreted, high-level, general-purpose programming language, known for its easy-to-read syntax. Python allows programmers to express concepts in fewer lines of code than other languages such as C++ or Java.

Python was created by Guido van Rossum in 1991. Python’s name is inspired by Monty Python’s Flying Circus, a British sketch comedy series. Over the years, Python has grown to become one of the most popular programming languages in the world.

Python is a versatile language used in a wide variety of applications, including in Web-Development, Data Science, and Machine Learning, Automation, Software Development, and Network Programming.

Python is known for its clean and readable syntax, making it an excellent choice for beginners and experienced developers alike.

Here are a few syntax features.

  • Python uses indentation to define the structure of the code, which enhances readability.
  • Dynamic Typing: Variables in Python do not need explicit declaration of their type. The type is inferred based on the value assigned.
  • A Rich Standard Library: Python comes with a comprehensive standard library that provides tools suited to many tasks.

To get started with Python, you need to install it on your computer. You can download Python from python.org. Then, follow the installation instructions specific to your operating system.

Once installed, you can run Python code in several ways, through your terminal, in an IDE such as Visual Studio Code, or Pycharm. Or in a Notebook application, such as Google Colab, or Jupyter.

Learn Python - This article is part of a series.
Part 1: This Article

Related