This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
thierry
/
minicourspython2025
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
6c239a9f60
Rami (Branch)
Tag
master
minicourspython...
/
fargs.py
fargs.py
75 B
Cronologia
Originale
1
2
3
4
5
def f(*args):
tot=0
for a in args:
tot += a
return tot