Alle Optionen
buster  ]
[ Quellcode: natsort  ]

Paket: python-natsort (6.0.0-1)

Links für python-natsort

Screenshot

Debian-Ressourcen:

Quellcode-Paket natsort herunterladen:

Betreuer:

Externe Ressourcen:

Ähnliche Pakete:

Natural sorting for Python

natsort lets you apply natural sorting to your sequences easily, for example:

 >>> from natsort import natsorted
 >>> a = ['a2', 'a9', 'a1', 'a4', 'a10']
 >>> data = [['a1', 'a5'], ['a1', 'a40'], ['a10', 'a1'], ['a2', 'a5']]
 >>> natsorted(a)
 ['a1', 'a2', 'a4', 'a9', 'a10'
 >>> natsorted(data)
 [['a1', 'a5'], ['a1', 'a40'], ['a2', 'a5'], ['a10', 'a1']]

natsort identifies the numbers and sorts them separately from strings.

natsort comes with a shell script to use natural sorting in shell scripts. You can also execute natsort from the command line with Python -m natsort.

There exists another natural sorting package for Python called python-naturalsort. You may prefer that package if you wish to only sort version numbers.

Andere Pakete mit Bezug zu python-natsort

  • hängt ab von
  • empfiehlt
  • schlägt vor
  • erweitert

python-natsort herunterladen

Download für alle verfügbaren Architekturen
Architektur Paketgröße Größe (installiert) Dateien
all 28,6 kB147,0 kB [Liste der Dateien]