Python3几个常见问题的处理方法
1. 编码问题: 遇到了几个字符串转换问题,总结如下: # str to bytes str.encode(s) # bytes to str bytes.decode(b) 判断编码方式可用chardet模块的chardet.detect(content)来协助。 2. char *有地址取内容: strcontent = string_at(addr, -1) 3. 从动态链接库中获取函数并调用ctypes from ctypes import * dll = CDLL(YourAPP.dll) dll.YourFunction() 4. 从dll中调用c程序,返回char*的情
用户评论