On 02/06/2014 12:01 AM, wilsonmo...@gmail.com wrote:
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
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 *full* traceback instead of hiding useful information when you are
asking for help.
Gary Herron
--
https://mail.python.org/mailman/listinfo/python-list