“Casting en Python” Código de respuesta

Casting en Python

x = int(1)   # x will be 1
y = int(2.8) # y will be 2
z = int("3") # z will be 3

x = float(1)     # x will be 1.0
y = float(2.8)   # y will be 2.8
z = float("3")   # z will be 3.0
w = float("4.2") # w will be 4.2

x = str("s1") # x will be 's1'
y = str(2)    # y will be '2'
z = str(3.0)  # z will be '3.0'
Asif Iqbal Paracha

Casting en Python

x = "3"
int(x)

y = "2.6"
float(y)

z = "1j"
complex(z)

print(typeof(x))
# Int
# float
# complex
The Cat Coder

Casting tipo Python

x = int(1.1)
y = str(1.1)
z = float(1.1)
print(x)
print(y)
print(z)
Javasper

Casting de tipo variable de Python

x = str("Jack");
y = int(111)
print(x)
print(y)
Javasper

Respuestas similares a “Casting en Python”

Preguntas similares a “Casting en Python”

Más respuestas relacionadas con “Casting en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código