У меня есть этот код ниже, я пытаюсь добавить имя столбца к выводу.
def main(self, img):
imgid = str(img).split("\\")[-1].replace(".jpeg", "")
print(imgid)
returnValue=self.predict(img, imgid)
output = ", ".join(returnValue)
logout = output.replace("Accuracy:", "").replace("Loss:", "")
log = open(path + 'Result/log.csv', 'a')
log.write("\n" + str(logout))
result = open(path + "Result/lastresult.txt","w")
result.write(str(output))
#print(output)
#print(file1)
return output
У меня есть это изображение ниже, как вывод без имени столбца.