gpt4 book ai didi

c - 如何允许 c printf 在 cython 单元格中的 ipython 笔记本中打印?

转载 作者:太空宇宙 更新时间:2023-11-04 00:04:42 29 4
gpt4 key购买 nike

%%cython
from libc.stdio cimport printf
def test():
printf('abc')

如果我运行 test(),它不会打印任何内容。

目前我正在做一些愚蠢的事情:

cdef char s[80]
sprintf(s, 'something')
print s

在 cython 中使用 printf 的更好方法是什么?为什么不打印?

最佳答案

您可以使用 wurlitzer捕获 C 级标准输出/标准错误并将其重定向到 IPython 的包。

例如,在您的 Jupyter notebook 中包含以下代码块:

%load_ext Cython
%load_ext wurlitzer
%%cython
from libc.stdio cimport printf
def test():
printf('abc')
test()
# prints "abc"

关于c - 如何允许 c printf 在 cython 单元格中的 ipython 笔记本中打印?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29262667/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com