“Python sortiert isdiigit” Code-Antworten

Python sortiert isdiigit

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

Python sortiert isdiigit

>>> 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

Ähnliche Antworten wie “Python sortiert isdiigit”

Fragen ähnlich wie “Python sortiert isdiigit”

Weitere verwandte Antworten zu “Python sortiert isdiigit” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen