Skip to content

cambio de números a todo para poner el 00-welcome #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `02` Hello World
# `01` Hello World

En Python, usamos **print** para hacer que el computador escriba cualquier cosa que queramos (el contenido de una variable, un string dado, etc.) en algo llamado "la consola".

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=voBO7a0KPtE"
---

# `02` Hello World
# `01` Hello World

In Python, we use **print** to make the computer write anything we want (the content of a variable, a given string, etc.) in something called "the console".

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `03` What is a function?
# `02` What is a function?

Puedes ver una función como un **fragmento de código** que puedes usar varias veces.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=tgTLyZ0cKj4"
---

# `03` What is a function?
# `02` What is a function?

You can see a function as a **fragment of code** we can use several times.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
---
# `04` Calling a Function
# `03` Calling a Function

Una función podría recibir 0 parámetros y devolverá algo siempre, incluso si no añades explícitamente el `return`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
---

# `04` Calling a Function
# `03` Calling a Function

A function could receive zero parameters, and it always returns something, even if you don't explicitly add the `return` statement.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `05` Defining vs Calling a Function
# `04` Defining vs Calling a Function

Las funciones solo existen si tú u otra persona las define... es la única forma en que el compilador/intérprete de lenguaje sabe que existen, por lo tanto, puede ejecutarlas cuando las llamas.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=fz4ttmwZWuc"
---

# `05` Defining vs Calling a Function
# `04` Defining vs Calling a Function

Functions will only exist if you or somebody else defines them; it is the only way the language compiler/interpreter knows they exist, therefore it's able to run them when you call them.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `06` Lambda Functions in Python
# `05` Lambda Functions in Python

Una **función lambda** es una función con solo una línea de código y sin nombre.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ tutorial: "https://www.youtube.com/watch?v=HACQ9uerCuE"
---


# `06` Lambda Functions in Python
# `05` Lambda Functions in Python

A **lambda function** is a function with just one line of code and no name.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `07` Lambda Functions
# `06` Lambda Functions

### ☝ Recuerda:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=1HwmTkQPeMo"
---

# `07` Lambda Functions
# `06` Lambda Functions

### ☝ Remember:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `08` Functions that return
# `07` Functions that return

Es una muy buena práctica que las funciones devuelvan algo, incluso si es `None`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=-tqNmngh1PE"
---

# `08` Functions that return
# `07` Functions that return

It is very good practice that all functions return something, even if it is `None`.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `09` Function parameters
# `08` Function parameters

Puedes especificar tantos parámetros como desees en una función.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=uaiDxW4LJNA"
---

# `09` Function parameters
# `08` Function parameters

You can specify as many parameters as you want in a function.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `10` List Methods
# `09` List Methods

## 📝 Instrucciones:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
tutorial: "https://www.youtube.com/watch?v=jBXve_vh7dU"
---

# `10` List Methods
# `09` List Methods

## 📝 Instructions:

Expand Down
File renamed without changes.