|  |  4.28.1 pyobject declarations 
 
Syntax:
pyobject name =pyobject_expression;
Purpose:
defines a pythonobject.
Default:
None
Example:
|  |   pyobject empty;
  empty;
==> None
  pyobject pystr = "Hello World!";
  pyobject pyone = 17;
  pyobject pylst = list(pystr, pyone);
  pylst;
==> ['Hello World!', 17]
 | 
 |