| python Programming Glossary: image_typesCan I do an ordered, default dict in Python http://stackoverflow.com/questions/6190331/can-i-do-an-ordered-default-dict-in-python 
 Python: split a list based on a condition? http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition  like 'file1.jpg' 33L '.jpg' 'file2.avi' 999L '.avi' ... IMAGE_TYPES '.jpg' '.jpeg' '.gif' '.bmp' '.png' images f for f in files.. '.bmp' '.png' images f for f in files if f 2 .lower in IMAGE_TYPES anims f for f in files if f 2 .lower not in IMAGE_TYPES  python.. in IMAGE_TYPES anims f for f in files if f 2 .lower not in IMAGE_TYPES  python   share improve this question   good x for x in mylist.. 
 |