<div>Hello list!!</div>
<div> </div>
<div>I&#39;m trying to write a CSV file to work it with Excel. My python script is working, the issue is: when I import the file from excel the data comes with quotes at the beginnig and ending of the row. I don&#39;t want to have these quotes. What is wrong with my code?</div>

<div> </div>
<div>import os, csv<br>from osgeo import ogr,gdal,osr<br>from dbf import *</div>
<div>gdal.AllRegister()<br>file_list = []<br>folders = None<br>for root, folders, files in os.walk( &quot;C:\\&quot; ):</div>
<div>    file_list.extend(os.path.join(root,fi) for fi in files if fi.endswith(&quot;.shp&quot;))<br>writer = csv.writer(open(&#39;csv2.csv&#39;, &quot;wb&quot;))<br>campos = [&#39;Ruta,Archivo,.prj&#39;]<br>writer.writerow(campos)<br>
for row, filepath in enumerate(file_list, start=1): <br>    (ruta, filename) = os.path.split(filepath) <br>    n = os.path.splitext(filepath)<br>    p = n[0]+&#39;.prj&#39;<br>    if os.path.exists(p):<br>        aRow = [&quot;&quot;+filepath+&quot;,&quot;+filename+&quot;,1&quot;]<br>
        writer.writerow(aRow)  <br>    else:<br>        aRow1 = [&quot;&quot;+filepath+&quot;,&quot;+filename+&quot;,0&quot;]<br>        writer.writerow(aRow1)</div>
<div>print &quot;El archivo esta listo&quot;<br></div>