摘要: https://docs.python.org/2/library/index.html 阅读全文
posted @ 2016-08-05 22:10 JustRelax 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 一、定义class模拟 1 如果是新版Python用户(Python 3.4 with PEP 435): from enum import EnumAnimal = Enum('Animal', 'ant bee cat dog') 2 class Directions: up = 0 down 阅读全文
posted @ 2016-08-05 22:07 JustRelax 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 一、Python call C function: C: vi hello.c gcc -fPIC -shared -o libhello.so Python: vi test.py 二:Ctypes 结构体 1. 定义结构体: class My_ST( Structure ) _fields_ = 阅读全文
posted @ 2016-08-05 22:02 JustRelax 阅读(354) 评论(0) 推荐(0) 编辑