Python shell输出为单独的行

时间:2017-05-11 11:27:47

标签: python list

我是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

0 个答案:

没有答案