Python list() vs list comprehension building speed
This is interesting; list() to force an iterator to get the actual list is so much faster than [x for x in someList] (comprehension). Is this for real or is my test just too simple? Below is the c...