我是python的新手,需要一些帮助。 这是我的代码:
import subprocess
direct_output = subprocess.check_output('find / -type f -name \"*.srt\"', shell=True)
print direct_output
我有这样的输出:
/path/to/my/code/name.srt
/path/to/my/code/other_name.srt
但我想逐一列出这些输出。就像是:
print print direct_output[1]
输出:
/path/to/my/code/other_name.srt