glob.glob may return the split files in the wrong order. Adding sorted to ensure concatenation is in a,b,c order.
glob.glob
sorted
a,b,c
Oh wow, so it does. Thanks!
· Sign up or log in to comment