我有一个excel文件,我希望使用Python逐个读取特定单元格,并且我将使用单元格的值作为一条消息发送到ECU(电子控制单元)。
有谁能请我一些想法?我有两个列,例如我在下面给出的:
Request** Response**
Client -> Server Server -> Client
10 01 50 01
10 81 expected no answer
10 02 50 02
10 01 50 01
10 82 expected no answer
10 03 50 03
10 83 expected no answer
10 04 7F 10 12
10 00 7F 10 12
10 84 7F 10 12
10 FF 7F 10 12
10 01 00 7F 10 13
10 7F 10 13
答案 0 :(得分:6)
也许this可以帮助您解析excel文件。使用此librabry时,您的代码可能如下所示:
import xlrd
book = xlrd.open_workbook("/path/to/your/file.xls")
first_sheet = book.sheet_by_index(0)
particular_cell_value = first_sheet.cell(12,34).value
# to something with this