Python新手,我遇到了将项目放入列表的各个元素的问题。我正在遍历子目录列表,并希望将每个子目录写入列表中的单独维度。 所以我的输出是:
[['roll_274_oe_2014-09-26',
['roll_275_oe_2014-10-03'],
['roll_276_oe_2014-10-10'],
['roll_277_oe_2014-10-17']]
但是看起来我在目录树中迭代输出的次数:
[['roll_274_oe_2014-09-26',
'roll_275_oe_2014-10-03',
'roll_276_oe_2014-10-10',
'roll_277_oe_2014-10-17'],
[], [], [], []]
目前执行此操作的代码是:
d = 'C:/winPython/WinPython-64bit-3.3.5.5/scripts/portofolio/'
s1 = []
for path, subdirs, files in os.walk(d):
s1.append(subdirs)
print(s1)
我希望有人能帮助我。
非常感谢