随笔分类 -  Python

摘要:网格大小:行列 单位长度: 确定 重置 计算 导出 阅读全文
posted @ 2018-01-18 01:14 一样菜 阅读(170) 评论(0) 推荐(0) 编辑
摘要:import SimpleHTTPServer import SocketServer PORT = 8000 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd... 阅读全文
posted @ 2017-04-29 15:04 一样菜 阅读(1143) 评论(0) 推荐(0) 编辑
摘要:http://demo.pythoner.com/itt2zh/ch1.html#ch1-1 http://www.runoob.com/bootstrap/bootstrap-tutorial.html html编辑器:http://www.alibuybuy.com/posts/18329.ht 阅读全文
posted @ 2017-02-09 16:29 一样菜 阅读(281) 评论(0) 推荐(0) 编辑
摘要:Python调用动态库的文件:pycall.py Python调用C++(类)动态链接库 需要extern "C"来辅助,也就是说还是只能调用C函数,不能直接调用方法,但是能解析C++方法。不是用extern "C",构建后的动态链接库没有这些函数的符号表。 g++编译生成动态库libpycall. 阅读全文
posted @ 2016-11-29 18:37 一样菜 阅读(33577) 评论(0) 推荐(2) 编辑