I have some jpegs in a directory. I want to display them in a window in rows and columns. For example if I have 10 pictures, I want to display them a 2 rows by 5 columns table.
There is a subplot(m, n, k) command in MATLAB and Octave. How can I do similar thing in python?
I have tried pillow with PIL.Image and show() method but it is very limited and displays only 1 image.
1- How to do this natively (not in browser)?
2- How to do this using matplotlib?
3- How to do this in browser using Jupyter?