Python 怎么为正在运行的程序传值(或者控制其中函数的运行和停止)
发布网友
发布时间:2022-05-05 07:37
我来回答
共1个回答
热心网友
时间:2022-04-19 00:36
进程间同步Python有asyncio标准库,多进程有multiprocessing库,如果是主机间通信需要使用网络协议socket、http等库。
可以参考Python文档的
The Python Standard Library -> 18. Interprocess
Communication and Networking ->
18.5. asyncio – Asynchronous
I/O, event loop, coroutines and tasks