Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Multiplication and power | Arithmetic operations
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

bookMultiplication and power

Multiplication is similar (use * to multiply numbers or variables).

To raise number or variable into a power use ** operator (see examples below):

12345
# Example of multiplication print(2*21) #Example of power print(2**21)
copy

Tarea

If you invested $1 in stock market and it returns 15% a year, how much you will have after 10 years?

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 2. Capítulo 2
toggle bottom row

bookMultiplication and power

Multiplication is similar (use * to multiply numbers or variables).

To raise number or variable into a power use ** operator (see examples below):

12345
# Example of multiplication print(2*21) #Example of power print(2**21)
copy

Tarea

If you invested $1 in stock market and it returns 15% a year, how much you will have after 10 years?

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 2. Capítulo 2
toggle bottom row

bookMultiplication and power

Multiplication is similar (use * to multiply numbers or variables).

To raise number or variable into a power use ** operator (see examples below):

12345
# Example of multiplication print(2*21) #Example of power print(2**21)
copy

Tarea

If you invested $1 in stock market and it returns 15% a year, how much you will have after 10 years?

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!

Multiplication is similar (use * to multiply numbers or variables).

To raise number or variable into a power use ** operator (see examples below):

12345
# Example of multiplication print(2*21) #Example of power print(2**21)
copy

Tarea

If you invested $1 in stock market and it returns 15% a year, how much you will have after 10 years?

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