This website works better with JavaScript
Página inicial
Explorar
Ajuda
Entrar
thierry
/
minicourspython2025
Observar
1
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Tree:
f433016f3e
Branches
Tags
master
minicourspython...
/
fargs.py
fargs.py
75 B
Histórico
Raw
1
2
3
4
5
def f(*args):
tot=0
for a in args:
tot += a
return tot