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
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to