Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用系统调用从 C 脚本调用 python 脚本(我知道这不是最佳实践,但现在它完成了预期的工作)。
当 C 在命令行上运行时,我可以使用 Ctrl-C 取消它。
当我运行 python 脚本时,当代码遵循特定的 if 子句时,我想使用 Ctr-C 调用命令行来取消 C 脚本,就像我可以手动执行一样。
请问这可能吗?
import signal import os os.kill(0, signal.CTRL_C_EVENT)