I am facing problem with importing io module in scipy
and python shell shows an error as following.
import scipy.io.array_import
ImportError: No module named array_import
Please let me know how to solve this.
By reading some post on net I also tried using
import numpy.loadtxt
but that too doesnt work
ImportError: No module named loadtxt
numpy.loadtxtis a function, not a module. That’s why you can’t importloadtxt: