@jdknox wrote:
I’m having a terrible time getting very basic stuff to work in python. For example:
File "color_temp.py", line 22, in calc_color NameError: name '_inplacevar_' is not defined
All line 22 does is
a -= 1
, wherea
is just afloat
.I’m being serious. As soon as I changed the line to
a = a - 1
the script works. This is unacceptable by even the lowest standards! I also can’t usemap
, nor starred expressions in function calls. What am I doing wrong?
Posts: 1
Participants: 1