gpt4 book ai didi

python脚本留下僵尸进程

转载 作者:太空宇宙 更新时间:2023-11-04 05:45:02 25 4
gpt4 key购买 nike

所以我在一些文件上运行了一些 python 脚本

ls * | xargs python myscript.py

进程正常完成后,我通过

查看了进程
ps aux

我发现该进程仍在列表中。我必须手动杀死它。为什么是这样?这是我的 python 脚本。

import sys
filex = open(argv[1])
for line in filex:
do sth here.

最佳答案

除非您在帖子中跳过了它,否则您之后不会对文件调用 close() 吗?

尝试在最后调用 filex.close() 或使用“with”:

with open(argv[1]) as filex:
for line in filex:
#do the things

关于python脚本留下僵尸进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18971837/

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