From cd73840982717f9b3971bcdfd9410f7bf53c48d5 Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Sat, 5 Jan 2019 12:07:51 +0100 Subject: [PATCH] fonctions.py: rename variable to make it clearer --- sources/03-fonctions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/03-fonctions.py b/sources/03-fonctions.py index 521baab..9c2af6d 100644 --- a/sources/03-fonctions.py +++ b/sources/03-fonctions.py @@ -1,9 +1,9 @@ def add(a, b): return a + b -a = 1 -b = 2 -c = add(a, b) +nombre_1 = 1 +nombre_2 = 2 +c = add(nombre_1, nombre_2) print(c)