我在Windows和Ubuntu中使用python版本2.7.3,在Windows中使用2.6。为什么以下导入几个模块的代码在Windows和ubuntu中都导致错误?

from FFT import *
from pylab import *
from numpy import *
from sampling import *
import pickle
import scipy



  ImportError:没有名为FFT的模块

最佳答案

from FFT import *


我相信这个^^^的意思是:

from numpy.fft import *

关于python - Python错误:ImportError:没有名为FFT的模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23781095/

10-15 23:01