如何使用Python列出目录
可能重复:
如何列出python目录中的所有文件
如何使用python列出所有目录内容并将其添加到列表中?
用Python,有很多方法可以做到这一点,但这是我知道的最简单的方法。
请检查输出的具体内容的评论。
from os import listdir
list = listdir("C:UsersHelloWorldPython Programs")
print list #Outputs the whole list
print len(list) #Checks for the length of the list
print list[26] #Outputs a specific element in the list
祝你好运!
链接地址: http://www.djcxy.com/p/20045.html