“Cómo obtener el tipo de variable en Python” Código de respuesta

Cómo verificar el tipo de variable en Python

print(type(x))
Fine Finch

Cómo obtener el tipo de variable en Python

age = 28
#To get the type us following command
print(type(age))
Code_Breaker

Python Get Tipo de variable

>>> i = 123
>>> type(i)
<type 'int'>
>>> type(i) is int
True
>>> i = 123.456
>>> type(i)
<type 'float'>
>>> type(i) is float
True
Energetic Echidna

Conozca el tipo de variable en Python

print type(variable_name)
The Explolearner

Respuestas similares a “Cómo obtener el tipo de variable en Python”

Preguntas similares a “Cómo obtener el tipo de variable en Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código