diff options
-rw-r--r-- | es/04_funciones.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es/04_funciones.md b/es/04_funciones.md index b23c457..5b78d9c 100644 --- a/es/04_funciones.md +++ b/es/04_funciones.md @@ -90,7 +90,7 @@ otras funciones. Por ejemplo: ``` python ->>> def filtra_lista(list): +>>> def filtra_lista(lista): ... def mayor_que_4(a): ... return a > 4 ... return list( filter(mayor_que_4, lista) ) |