我无法从python执行shell命令query user
。
我使用的代码:
from subprocess import call
call('query user', shell = True)
错误:
'query' is not recognized as an internal or external command, operable program or batch file.
注意:
其他命令似乎可行。例如,如果我执行命令call('echo %temp%', shell = True)
,我将获得临时文件夹路径。