瀏覽代碼

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)