“python sort isdigit” Código de respuesta

python sort isdigit

from natsort import natsorted
my_list = ['image101.jpg', 'image2.jpg', 'image1.jpg']
natsorted(my_list)
Elated Echidna

python sort isdigit

>>> my_list= ['image101.jpg', 'image2.jpg', 'image1.jpg']
>>> my_list.sort(key=lambda x: int(''.join(filter(str.isdigit, x))))
>>> my_list
['image1.jpg', 'image2.jpg', 'image101.jpg']
Elated Echidna

Respuestas similares a “python sort isdigit”

Preguntas similares a “python sort isdigit”

Más respuestas relacionadas con “python sort isdigit” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código