gpt4 book ai didi

python - 将 read() 和 readlines() 与子进程一起使用

转载 作者:行者123 更新时间:2023-12-01 04:58:34 25 4
gpt4 key购买 nike

我目前有以下内容:

    filecmd = subprocess.Popen(['git', 'diff', commit, commit2, file],
stdout=subprocess.PIPE, stderr=null)
gitoutraw = filecmd.stdout.read()
gitoutrawlines = filecmd.stdout.readlines()

这会导致 gitoutrawlines 为空。我如何设置这两个变量?我尝试过仅使用 gitoutraw = filecmd.stdout.read() 并将其转换为列表,但没有成功。

最佳答案

gitoutrawlines = gitoutraw.split("\n")

关于python - 将 read() 和 readlines() 与子进程一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26814272/

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