> I'm using a COM object, where some methods are implemented as
> properties. The problem arises when I want to assign a value to
> properties that use parameters...
> Example
> # vm is the COM object I'm using
> InitFractions = (0.25, 0.25, 0.25, 0.25)
> vm.ObjectDoubleArrayValue(0, 1, -4) =
I'm using a COM object, where some methods are implemented as
properties. The problem arises when I want to assign a value to
properties that use parameters...
Example
# vm is the COM object I'm using
InitFractions = (0.25, 0.25, 0.25, 0.25)
vm.ObjectDoubleArrayValue(0, 1, -4) = InitFractions
Nice synopsis.
To amplify on Python advantage #1: even though I myself prefer to
program in Perl (it's just the devil I'm used to), as everyone
associated with Perl says over and over, TMTOWTDI ("There's More Than
One Way To Do It") in Perl -- this often leads to confusing and
inconsistent s