Comment écrire votre premier programme Python

# The basics are messages such as Hello World which is displayed in the shell window.
# The line of code bellow is used to show strings or integers in the python terminal window.
print("Hello World")
Itchy Ibex