Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need some help on sorting 2 lists..one with file listings and one with directory listings. These lists are generated through another part in a much larger script that I cannot put on here.

filelist = ['EN088_EFH_030_comp_v011.mov', 'EN086_EHA_010_comp_v031.mov', 'EN083_WDA_400_comp_v021.mov', 'EN086_EHA_020_comp_v010.mov', 'EN083_WDA_450_comp_v012.mov']

folderlist = ['[EN086_EHA_010_comp_v031]', '[EN083_WDA_400_comp_v021]', '[EN086_EHA_020_comp_v010]', '[EN083_WDA_450_comp_v012]']

using .sort I can get the data to output like this.

[CB083_WDA_400_comp_v021]
[CB083_WDA_450_comp_v012]
[CB086_EHA_010_comp_v031]
[CB086_EHA_020_comp_v010]
CB083_WDA_400_comp_v021.mov
CB083_WDA_450_comp_v012.mov
CB086_EHA_010_comp_v031.mov
CB086_EHA_020_comp_v010.mov
CB088_EFH_030_comp_v011.mov

But I need it to output like this

[CB083_WDA_400_comp_v021]
CB083_WDA_400_comp_v021.mov
[CB083_WDA_450_comp_v012]
CB083_WDA_450_comp_v012.mov
[CB086_EHA_010_comp_v031]
CB086_EHA_010_comp_v031.mov
[CB086_EHA_020_comp_v010]
CB086_EHA_020_comp_v010.mov
CB088_EFH_030_comp_v011.mov

How can I go about sorting it but ignoring the [] during the sort?
Or what would I do to get the second output?
I'm kind of stumped on what I should do.
Any tips or suggestions?

share|improve this question

1 Answer

....sort(key=lambda x: x.strip('[]'))
share|improve this answer
Would that remove the [] from my final output? I need to keep the brackets in. – user1995322 Jan 20 at 20:28
4  
No; that just sorts them based on the version of the string that doesn't have the brackets there. – Dougal Jan 20 at 20:33
Thanks for this, I am somewhat new to python and still elarning the ins and outs of it. the strip method functions however because the data still have the extensions it still causes the data to sort wrong. I believe I can get it to ignore the extension some how during the sort using a similar method as above correct? – user1995322 Jan 20 at 21:04
@user1995322 - What do the extensions for which sort doesn't work look like - examples? – sidi Jan 20 at 21:16
1  
lambda x: x.strip('[]').rsplit('.', 1)[0] – Ignacio Vazquez-Abrams Jan 20 at 21:38
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.