Bootstrap

Python:打印目录下所有文件

#!/usr/bin/env python3

# -*- coding: utf-8 -*-
import os
print(os.listdir("D:\Python\src"))

;