This website works better with JavaScript
Startseite
Erkunden
Hilfe
Anmelden
thierry
/
minicourspython2025
Beobachten
1
Favorit hinzufügen
0
Fork
0
Dateien
Issues
0
Pull-Requests
0
Wiki
Struktur:
f433016f3e
Branches
Tags
master
minicourspython...
/
fargs.py
fargs.py
75 B
Verlauf
Originalformat
1
2
3
4
5
def f(*args):
tot=0
for a in args:
tot += a
return tot