Home Online Manual
Top
Back: pyobject
Forward: pyobject expressions
FastBack: polytope
FastForward: countedref
Up: pyobject
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

4.27.1 pyobject declarations

Syntax:
pyobject name = pyobject_expression ;

Purpose:
defines a python object.

Default:
None

Example:
 
  pyobject empty;
  empty;
==> None

  pyobject pystr = "Hello World!";
  pyobject pyone = 17;
  pyobject pylst = list(pystr, pyone);
  pylst;
==> ['Hello World!', 17]