共计 129 个字符,预计需要花费 1 分钟才能阅读完成。
调用 libc 库
#!/usr/bin/env python
# _*_ coding:utf-8 _*_
import ctypes
libc=ctypes.CDLL("libc.so.6")
msg = 'hello'
libc.printf("%s\n",msg)
正文完
扫码赞助

共计 129 个字符,预计需要花费 1 分钟才能阅读完成。
调用 libc 库
#!/usr/bin/env python
# _*_ coding:utf-8 _*_
import ctypes
libc=ctypes.CDLL("libc.so.6")
msg = 'hello'
libc.printf("%s\n",msg)