记录:python使用numpy读取csv文件

path = "文件路径"
data = np.loadtxt(path, dtype=str, delimiter=",")

虽然没用试过,但读取Excel的数据应该只需要将分隔符替换就可以了.

你可能感兴趣的:(python)