使用Python从CSV文件中逐个读取特定单元格值

时间:2013-09-06 07:47:19

标签: python csv

我有一个CSV文件,我想逐个读取特定的单元格值。之后,我将在另一个函数中使用该值。我想用Python实现。

有没有人有任何想法或某人有同样的事情可以分享它?

这是我到目前为止所尝试的内容

import csv 
from Imports import * 
u = uds (0x0, 0, 0x18DA43F1, 0, 0x18DAF143, 0) 
cr = csv.reader(open("ECUreset.csv", "r"),delimiter=';') 
included_cols = [1, 2] 
for row in cr: 
    #print row 
    content = list(row[i] for i in included_cols ) 
    print content 
    SendMessage (row[1], row[2], "DiagnosticSessionControl - programming session", True)

0 个答案:

没有答案