我不能从这个函数返回dict。我对python很新。
答案 0 :(得分:1)
首先,这是一个提问的非常糟糕的方式。你应该发送书面代码,而不是截图。
问题本身不是很清楚。
希望你下次能够提高,让我回答一下。该函数返回一个字符串。您正在将readOcrByImage(image) {
Tesseract.detect(image).then(function (result) {
console.log(result)
});
}
转换为行dict
中的str
。如果你想返回字典,我建议使用:
23
另外一点,使用with open('order.txt', 'w') as txt_f:
txt_f.write(str(torder)) # pass the str version of dict to the file
return torder # this is dictionary
语法进行读/写文件。