“Python Glob sortisch sortisch” Code-Antworten

Python Glob sortisch sortisch

import glob
import os
files = sorted(glob.glob(f'{os.getcwd()}/*.txt'), key=len)
print(files)
bougui

Python Glob sortisch sortisch

import re 
import math
from pathlib import Path 

file_pattern = re.compile(r'.*?(\d+).*?')
def get_order(file):
    match = file_pattern.match(Path(file).name)
    if not match:
        return math.inf
    return int(match.groups()[0])

sorted_files = sorted(files, key=get_order)
bougui

Ähnliche Antworten wie “Python Glob sortisch sortisch”

Fragen ähnlich wie “Python Glob sortisch sortisch”

Weitere verwandte Antworten zu “Python Glob sortisch sortisch” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen