This website works better with JavaScript.
Home
Explore
Help
Sign In
E2L_Ivry
/
cours-python
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fonctions.py: rename variable to make it clearer
master
Dimitri Merejkowsky
5 years ago
parent
6f10ee0730
commit
cd73840982
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
sources/03-fonctions.py
+ 3
- 3
sources/03-fonctions.py
View File
@@ -1,9 +1,9 @@
def add(a, b):
return a + b
a
= 1
b = 2
c = add(
a, b
)
nombre_1
= 1
nom
b
re_2
= 2
c = add(
nombre_1, nombre_2
)
print(c)