2013-09-05 176 views
2

我有一個excel文件,我想用Python讀取特定的單元格,並將單元格的值作爲一個消息發送到ECU(電子控制單元)。Python讀取特定的單元格值

任何人都可以請給我一些想法?我有兩個colums例如,我已經給下面:

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 
+2

歡迎!您將通過提供鏈接等方式增加您的良好回答機會。到ECU的文檔,並改進問題的格式。 – Jan

回答

7

也許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 
+0

非常感謝您的回覆,但我無法導入xlrd模塊, – ketan

+0

@ user2750946您首先需要下載並安裝模塊,例如[從這裏](https://pypi.python.org/pypi/xlrd) – 203

+0

非常感謝你 – ritesh