“dividir un número en dígitos python” Código de respuesta

dividir un número en dígitos python

>>> n = 43365644 
>>> digits = [int(x) for x in str(n)]
>>> digits
[4, 3, 3, 6, 5, 6, 4, 4]
>>> lst.extend(digits)  # use the extends method if you want to add the list to another
Cypher

dividir un número en dígitos python

>>> n = 43365644
>>> [int(d) for d in str(n)]
[4, 3, 3, 6, 5, 6, 4, 4]
>>>
Cypher

Respuestas similares a “dividir un número en dígitos python”

Preguntas similares a “dividir un número en dígitos python”

Más respuestas relacionadas con “dividir un número en dígitos python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código