Переглянути джерело

fonctions.py: rename variable to make it clearer

master
Dimitri Merejkowsky 5 роки тому
джерело
коміт
cd73840982
1 змінених файлів з 3 додано та 3 видалено
  1. +3
    -3
      sources/03-fonctions.py

+ 3
- 3
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)