|
|
- #!/usr/bin/env python3
- #title :5-2.py
- #description :Opdracht 5.2 - Functie met list-parameter
- #author :Marcel Haazen
- #email :marcel@haazen.xyz
- #date :21-09-2019 - 23:58
- #version :0.1
- #usage :python3 5-2.py
- #notes :
- #python_version :3.7.4
- #==============================================================================
-
- def som(getallenLijst):
- print(sum(getallenLijst))
-
- som([1,2,7])
|