>py ( obj -- py-obj )
Python binding

Next:py> ( py-obj -- obj )


Vocabulary
python

Inputs
obja factor object


Outputs
py-obja python object


Word description
Converts a factor objects to its most fitting python representation.

Examples
USING: arrays prettyprint python sequences ; 10 <iota> >array >py py> .
{ 0 1 2 3 4 5 6 7 8 9 }


See also
py>

Definition

GENERIC: >py ( obj -- py-obj )


Methods