Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-02 02:11:20 +01:00 committed by GitHub
parent 1d57978583
commit 859b9d17e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,17 @@ print(list)
['Testfile_001.mat', 'Testfile_002.mat', 'Testfile_010.mat', 'Testfile_003.mat']
```
### Sorting the filenames
```python
import glob
list = sorted(glob.glob("*.mat"))
print(list)
```