Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende How to Define a Type | Familiarizándonos con los Números en Python
Tipos de Datos en Python
course content

Contenido del Curso

Tipos de Datos en Python

Tipos de Datos en Python

1. Familiarizándonos con los Números en Python
2. ¿Verdadero o Falso?
3. Strings
4. Reuniendo Todos los Temas

book
How to Define a Type

We've previously come across float and integer types, so now we can tell whether a value is a float or an integer. Can you guess what the result of the math operation 6/1.5 might be? It's easy to calculate that it equals 4, but what type does 4 belong to? It might seem like an integer, but it's actually a float. To confirm its type, you can use the type() function.

123
variable = 6/1.5 print(variable) print(type(variable))
copy
Tarea

Swipe to start coding

An accountant received two reports: one contains the total revenue for the month, and the other records the number of successful transactions. Before calculating the average revenue per transaction, it's important to check if the data types are correct.

  1. Check the type of the number1 variable, which stores the total revenue.
  2. Check the type of the number2 variable, which stores the number of transactions.

Solución

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

book
How to Define a Type

We've previously come across float and integer types, so now we can tell whether a value is a float or an integer. Can you guess what the result of the math operation 6/1.5 might be? It's easy to calculate that it equals 4, but what type does 4 belong to? It might seem like an integer, but it's actually a float. To confirm its type, you can use the type() function.

123
variable = 6/1.5 print(variable) print(type(variable))
copy
Tarea

Swipe to start coding

An accountant received two reports: one contains the total revenue for the month, and the other records the number of successful transactions. Before calculating the average revenue per transaction, it's important to check if the data types are correct.

  1. Check the type of the number1 variable, which stores the total revenue.
  2. Check the type of the number2 variable, which stores the number of transactions.

Solución

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 1. Capítulo 7
Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
We're sorry to hear that something went wrong. What happened?
some-alt