This question shows research effort; it is useful and clear
2
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我正在使用 ctypes 为 ac 库编写一些绑定:
from ctypes.util import find_library
from ctypes import *
lib = find_library("lvm2app")
if not lib:
raise Exception("LVM library not found.")
lvmlib = CDLL(lib)