From e553abd81963f8309e27dd91b53717aa4b647b01 Mon Sep 17 00:00:00 2001 From: luodan <1877540177@qq.com> Date: Tue, 11 Nov 2025 11:20:13 +0800 Subject: [PATCH] Update basic03.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 错别字大佬 --- 03Thread/day02/basic03.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/03Thread/day02/basic03.py b/03Thread/day02/basic03.py index 8e0706c..bfcddc1 100644 --- a/03Thread/day02/basic03.py +++ b/03Thread/day02/basic03.py @@ -1,5 +1,5 @@ """ - 主进程从队列中放入键盘输入的数据,紫禁城取出队列中的数据打印出来 + 主进程从队列中放入键盘输入的数据,子进程取出队列中的数据打印出来 """ import multiprocessing @@ -25,4 +25,4 @@ def main(): queue.put(data) if __name__ == '__main__': - main() \ No newline at end of file + main()