hey guys, when i run:
with open('file00.txt') as f00:
for line in f00:
farr=array.append(float(line))
print "farr= ",farr
i get:
farr=array.append(float(line))
AttributeError: 'module' object has no attribute 'append'
does anyone know why I get this? do I have to import something? am I doing it completely wrong?
thanks