了
import os
import numpy as np
import matplotlib.pyplot as plt
# Open a file
path = "input/"
filelist = list(filter(lambda s: s.endswith(".asc"), os.listdir(path)))
firstImage = np.genfromtxt (" ".join(ln.split()[1:]) for ln in path+next(iter(filelist)))
出了什么问题?getting: TypeError: 无法将"bytes"对象隐式转换为 str
查看函数的文档,它似乎能够开箱即用的各种疯狂的东西:
http://docs.scipy.org/doc/numpy/reference/generated/numpy.genfromtxt.html
包括但不限于,使用 usecols
参数将允许您跳过使用某些列。
那么就不需要花哨的操作