1.python只列出当前目录(或者指定目录)下的文件或者目录条目 import os files,dirs=[],[] for item in os.listdir(): if os.path.isfile(item): files.append(item) elif os.path.isdir(item): dirs.append(item)### os.listdir()中可以指定目录,默认为当前目录### os.path.abspath(item)可以列出文件或者文件夹的绝对路径###…