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?
feedback
|
|
There is no difference on the import, however there is a small difference on access. When you access the function as
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. | |||
feedback
|
|
When in doubt, time it:
I get the following results, using the minimum of 5 repetitions of 10,000,000 calls:
There appears to be a very slight usage advantage to using However, the actual import statements differ in their speed by a significant amount. On my computer, I get the following results:
So | |||||||
feedback
|
|
There is no difference, except for what names from re are visible in you local namespace after the import. | |||
|
feedback
|