摘要:
https://docs.python.org/2/library/index.html 阅读全文
摘要:
一、定义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 阅读全文
摘要:
一、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_ = 阅读全文