可能重复:
管道子流程标准输出到变量
我正在运行一个 python 程序:
import os
os.system("ls") # ls command runs on the terminal
要将输出存储在文件中:
os.system("ls > a.txt")
我需要的是,它将输出存储在一些临时字符串中。那可能吗 ??
可能重复:
管道子流程标准输出到变量
我正在运行一个 python 程序:
import os
os.system("ls") # ls command runs on the terminal
要将输出存储在文件中:
os.system("ls > a.txt")
我需要的是,它将输出存储在一些临时字符串中。那可能吗 ??