<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 02/06/2014 12:01 AM,
      <a class="moz-txt-link-abbreviated" href="mailto:wilsonmonde@gmail.com">wilsonmonde@gmail.com</a> wrote:<br>
    </div>
    <blockquote
      cite="mid:38411b43-0f2b-451c-a4ac-1379b5cc8607@googlegroups.com"
      type="cite">
      <pre wrap="">import csv

date1 = []
open = []
high = []
low = []
close = []
data = []
with open("C:/Documents and Settings/wilson/My Documents/Downloads/execution.csv", "rb") as csvfile:
        fastreader = csv.reader(csvfile, delimiter = ",", skipinitialspace=True)
        count = 0
        for row in fastreader:
                date1.append(row[0])
                count = count + 1


TypeError: 'list' object is not callable
</pre>
    </blockquote>
    <br>
    I'd be glad to help, but I'm not interested in guessing.  Pleas take
    the time to tell us what line produced that error?  That is: cut and
    paste the <b>full</b> traceback instead of hiding useful
    information when you are asking for help.<br>
    <br>
    Gary Herron<br>
    <br>
  </body>
</html>