Hello all,<br><br>I am now trying to access the csv file using dictreader. <br><br>import csv<br><br>r25  = csv.DictReader(open('Report_<div id=":8t" class="ii gt">25', 'rb'), delimiter=',')<br><br>

rownum = 1<br>for row in r25:<br>
    # Save header row.<br>    if rownum == 0:<br>        header = row<br>    else:<br>        colnum = 0<br>        for col in row:<br><br>This only gets me the following output<br><br>{'FieldName1': '4', 'FieldName2': '0.00', 'FieldName3':<br>


'4001433', 'FieldName4': '759'}<br><br>1. How do i access the 4, 0.00, ... the values ?<br>2. How do i compare it with another csv file ?<br>
<br>Thanks in advance<br><font color="#888888">Siva</font></div>