1 Getting started#

Objectives#

  • discover and know how to write a Python program

  • discover and know how to use a notebook

  • write by using the markdown syntax

  • manipulate variables

Code cells#

The two cells containing codes should be:

40 + 2
42
year = 2023
course = "BIP"
print(f"{course} {year}")
BIP 2023

Markdown cell#

The markdown cell should be:

## New exercise

Write **bold**, _italic_ or equations: $\sqrt{2}$.

to get:

New exercise

Write bold, italic or equations: \(\sqrt{2}\).