test1.cpp
#include 【Python|python调用C++实现在文件中搜索单词】#include
#include
#include
#include
#include
C++的代码中已经对Python版本做了区分。
python版本是2.x使用下面命令(以python2.7为例)
g++ -std=c++11 -fPIC -shared test1.cpp -I/usr/include/python2.7 -o test1.so
python版本是3.x使用下面命令(以python3.5为例)
g++ -std=c++11 -fPIC -shared test1.cpp -I/usr/include/python3.5 -o test1.so
# -*- coding: utf-8 -*-
# !usr/bin/env pythonimport test1if __name__ == '__main__':
print(test1.Fun.__doc__)
test1.Fun("test1.cpp")
推荐阅读