摘要:
如何向控制台输出彩色打印信息呢?如何订制自己的输出格式呢?下面将告诉你……import os"""0 All attributes off 默认值1 Bold (or Bright) 粗体 or 高亮4 Underline 下划线5 Blink 闪烁7 Reverse 反显30 Black text31 Red text32 Green text33 Yellow text34 Blue text35 Purple text36 Cyan text37 White text40 Black background41 Red background42 Green b 阅读全文
摘要:
from ctypes import *TenIntArrayType = c_int * 10 #相当于定义了一个int[10]类型arr = TenIntArrayType()#访问方法for ii in arr: print (ii)#或者for ii in range(10): print (arr[ii])lib = cdll.LoadLibrary("dll.so")#取指针lib.PrintData(pointer(arr), 10)ctypes基本数据类型:定义了对应于C内置类型的相应类型http://docs.python.org/release/2.5/ 阅读全文