pvdocs /Python/Introduction

Introduction to Python

Python is a high-level, interpreted language known for its readable syntax and large ecosystem.

Why Python?

Hello, World

print("Hello, World!")

Running a script

python script.py

Interactive REPL

python
>>> 1 + 1
2
>>> "hello".upper()
'HELLO'