gpt4 book ai didi

Python子进程困惑的输出

转载 作者:行者123 更新时间:2023-11-30 23:10:41 24 4
gpt4 key购买 nike

使用以下代码:

output = subprocess.check_output(['wmic', 'PATH', 'Win32_videocontroller', 'GET', 'description'])
print(output , "\n")

我得到下一个输出:

b'Description                \r\r\nNVIDIA GeForce 710M        \r\r\nIntel(R) HD Graphics 4000  \r\r\n\r\r\n'

当我在 CMD 中使用命令 wmic path win32_videocontroller get desription 时,我只得到了显卡信息。这在Python中也可能吗?没有/r/r/r/r 的东西吗?

最佳答案

调用函数时使用参数“universal_newlines=True”:

output = subprocess.check_output(['wmic', 'PATH', 'Win32_videocontroller',  'GET', 'description'], universal_newlines=True)
print(output , "\n")

关于Python子进程困惑的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30630181/

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