python pandas 读没有column列名的数据

def fromCSVGetROI(CSVROIFileName):
    roi = pd.read_csv(CSVROIFileName,header=None)
    return roi

你可能感兴趣的:(python)