On 2009-10-13 17:09 PM, leo zhao wrote:
I  try to a run a python numpy programe, however the python can't run
this program.
my python version is 2.6.2 , numpy  version is 1.3.0, however, the
program can run in previous numpy version(1.2.0), who can help me to
solve the problem, I will deeply appreciate!
the program is below:

the hint is the small window at python:


syntax error:
There' an error in your program: invalid syntax.

Always copy-and-paste the complete error message. Do not try to paraphrase or retype the message.

Your problem is this line:

        self.demand_veector = array([0.0,0.0]

It should be this:

        self.demand_veector = array([0.0,0.0])

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
 that is made terrible by our own mad attempt to interpret it as though it had
 an underlying truth."
  -- Umberto Eco

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to