#include <Python.h> ... Py_Initialize(); PyRun_SimpleString("x = brave + sir + robin");
title = "The Meaning of Life"
$ python >>> import myfile >>> print myfile.title The meaning of Live >>>
$ python >>> from myfile import title >>> print title The meaning of Live >>>