No dudes en divulgar nuestro sitio y códigos en tus redes, necesitamos tu ayuda para aumentar esta comunidad.
Ejemplo 1: dividir un número en dígitos python
>>> n =43365644>>> digits =[int(x)for x instr(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
Ejemplo 2: cómo separar cada dígito en un número entero en python
# Method 1
n =43365644
digits =[int(x)for x instr(n)]print(digits)#Output 1>>>[4,3,3,6,5,6,4,4]
lst.extend(digits)# use the extends method if you want to add the list to another# Method 2
n =43365644[(n//(10**i))%10for i inrange(math.ceil(math.log(n,10))-1,-1,-1)]#Output 2>>>[4,3,3,6,5,6,4,4]
Aquí tienes las comentarios y puntuaciones
Si te gustó nuestro trabajo, tienes el poder dejar un artículo acerca de qué te ha gustado de este tutorial.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)