Coding Pirates

Lesson 3

Types

Every value has a type: what kind of thing it is. The four you will use most:

str

Text: "Ahoy!". Always in quotes.

int

Whole numbers: 42, -3.

float

Decimal numbers: 3.14, 1.5.

bool

Yes or no: True, False.

You can tell Python what type you mean with a type hint: age: int = 12. Python does not need it, but ty uses it to catch mistakes like adding text to a number before you run the program.

1 / 4