Python을 공부하면서 일부 내용을 정리한다. [[TableOfContents]] = Python = == C에 포함시킬 수도 있다 == {{{#!vim c #include ... Py_Initialize(); PyRun_SimpleString("x = brave + sir + robin"); }}} == 모듈 맛뵈기 == myfile.py라는 파일을 다음과 같이 작성한다. {{{#!vim python 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 >>> }}}