Skip to content

Beginner

Installation

Python's website python.org

paru -S python
scoop bucket add main
scoop install python
brew install python

Choosing an IDE

First Program

print("Hello World")
Hello World

Strings

print("Hello" + " " + "world!")
Hello world!

Input function

print('Hello ' + input('What is your name?') + '!')
Hello Max!

Variables

name = "Max"
print(name)
Max