#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 >>>위에서 보는 바와 같이 import를 통해 myfile.py의 내용 중 myfile.title를 통해 참조할 수 있다.
$ python >>> from myfile import title >>> print title The meaning of Live >>>from과 import를 이용하면 title를 참조할 수 있다.