vote up 1 vote down star

Say I only needed to use findall() from the re module, is it more efficient to do:

from re import findall

or

import re

Is there actually any difference in speed/memory usage etc?

flag

Premature optimization is evil. Please provide some specific thing to optimize. Blanket "is more efficient" questions are meaningless without a specific piece of code to measure. – S.Lott Dec 7 '08 at 14:15

3 Answers

vote up 7 vote down check

There is no difference on the import, however there is a small difference on access.

When you access the function as

re.findall()

python will need to first find the module in the global scope and then find findall in modules dict. May make a difference if you are calling it inside a loop thousands of times.

link|flag
+1, but also note that Python will search local namespace before global namespaces, so creating a local function (findall = re.findall) that references the function is the best, and works identically with both import styles. – Tom Dec 6 '08 at 21:20
vote up 6 vote down

When in doubt, time it:

from timeit import Timer

print Timer("""re.findall(r"\d+", "fg12f 1414 21af 144")""", "import re").timeit()
print Timer("""findall(r"\d+", "fg12f 1414 21af 144")""", "from re import findall").timeit()

I get the following results, using the minimum of 5 repetitions of 10,000,000 calls:

re.findall(): 123.444600105
findall(): 122.056155205

There appears to be a very slight usage advantage to using findall() directly, rather than re.findall().

However, the actual import statements differ in their speed by a significant amount. On my computer, I get the following results:

>>> Timer("import re").timeit()
2.39156508446
>>> Timer("from re import findall").timeit()
4.41387701035

So import re appears to be approximately twice as fast to execute. Presumably, though, execution of the imported code is your bottleneck, rather than the actual import.

link|flag
When are you ever going to import something 1 million times??? – hop Dec 7 '08 at 3:51
I think that's what I was trying to say.... – Noah Dec 7 '08 at 18:20
vote up 3 vote down

There is no difference, except for what names from re are visible in you local namespace after the import.

link|flag

Your Answer

Get an OpenID
or

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