嵌套导入的执行时间和频率是多少?

时间:2016-08-24 05:49:34

标签: python function namespaces nested python-import

给出诸如

之类的代码
def norm(x, y):
    from math import sqrt
    return sqrt(x**2 + y**2)

import嵌套在函数中可以保持外部名称空间的清晰。但是,import实际上是在每次调用函数时发生的,因此会降低性能,还是仅在第一次调用时才会缓存,然后以某种方式缓存?

0 个答案:

没有答案