💻
Python Zero to Hero
  • Python Zero to Hero
  • What is Python?
    • What is Python?
      • High Level
      • Intrepreted
      • General Purpose
    • Tooling
    • Hello, World!
    • Variables
    • Operators
    • Object Orientated Programming
    • Boolean Values
    • If Statements
    • Loops
    • Functions
      • Scope
    • Python Libraries
    • Virtual Environments
      • PyEnv
  • Advanced
    • Introduction
    • Set Theory
Powered by GitBook
On this page

Was this helpful?

  1. What is Python?
  2. What is Python?

Intrepreted

Python is an interpreted language. That means that instead of translating the whole code into machine code at once, it translates the code piece by piece. And once it's converted a piece of code, it runs it, and then continues until the program stops running.

PreviousHigh LevelNextGeneral Purpose

Last updated 4 years ago

Was this helpful?