You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Affiche Hello world !
|
|
|
|
print("Hello World !")
|
|
|
|
# Declaration de variable
|
|
|
|
num = 1
|
|
string = "Oi"
|
|
liste=[num,string]
|
|
|
|
print(liste)
|
|
|
|
|
|
# Utilisation de fonction |