Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Writing your own functions (2/5) | Functions
Learn Python from Scratch
course content

Contenido del Curso

Learn Python from Scratch

Learn Python from Scratch

1. The basics
2. Arithmetic operations
3. Common data types
4. Conditional statements
5. Other data types
6. Loops
7. Functions

bookWriting your own functions (2/5)

All we have learned till now can be used inside the function. For example, you can easily put conditional statements inside the function body.

For example, we can define a function that will check if the number is odd or even.

12345678910
# define a function def is_odd(n): if n % 2 == 0: return "even" else: return "odd" # testing function print('2 is', is_odd(2)) print('3 is', is_odd(3))
copy

Tarea

Define a function is_positive checking if the number is positive (in that case return positive), negative (return negative), or equals zero (return zero).

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 7. Capítulo 3
toggle bottom row

bookWriting your own functions (2/5)

All we have learned till now can be used inside the function. For example, you can easily put conditional statements inside the function body.

For example, we can define a function that will check if the number is odd or even.

12345678910
# define a function def is_odd(n): if n % 2 == 0: return "even" else: return "odd" # testing function print('2 is', is_odd(2)) print('3 is', is_odd(3))
copy

Tarea

Define a function is_positive checking if the number is positive (in that case return positive), negative (return negative), or equals zero (return zero).

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 7. Capítulo 3
toggle bottom row

bookWriting your own functions (2/5)

All we have learned till now can be used inside the function. For example, you can easily put conditional statements inside the function body.

For example, we can define a function that will check if the number is odd or even.

12345678910
# define a function def is_odd(n): if n % 2 == 0: return "even" else: return "odd" # testing function print('2 is', is_odd(2)) print('3 is', is_odd(3))
copy

Tarea

Define a function is_positive checking if the number is positive (in that case return positive), negative (return negative), or equals zero (return zero).

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

All we have learned till now can be used inside the function. For example, you can easily put conditional statements inside the function body.

For example, we can define a function that will check if the number is odd or even.

12345678910
# define a function def is_odd(n): if n % 2 == 0: return "even" else: return "odd" # testing function print('2 is', is_odd(2)) print('3 is', is_odd(3))
copy

Tarea

Define a function is_positive checking if the number is positive (in that case return positive), negative (return negative), or equals zero (return zero).

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
Sección 7. Capítulo 3
Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
some-alt