This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
thierry
/
minicourspython2025
Seguir
1
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Pull Requests
0
Wiki
Árbore:
6c239a9f60
Ramas
Etiquetas
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