ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/homework PROGA/pe_5_2.py

5 lines
82 B
Python

def som(getallenLijst):
ret = sum(getallenLijst)
return ret
print(som([4,1,3]))