码迷,mamicode.com
首页 > 编程语言 > 详细

Python 常用模块

时间:2018-03-31 15:11:04      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:img   def   for   AC   post   bsp   span   col   技术   

一、json模块

 

二、os模块

练习:

编写一个函数,遍历路径下,所有的目录和子目录

技术分享图片
"""
编写一个函数,遍历路径下,所有的目录和子目录
"""

import os


def list_all_file(file_path):
    paths = os.listdir(file_path)
    for each in paths:
        path_next = os.path.join(file_path, each)
        if os.path.isdir(path_next):
            list_all_file(path_next)
        else:
            print(os.path.join(file_path, path_next))


list_all_file(r"D:\python_local")
View Code

 

Python 常用模块

标签:img   def   for   AC   post   bsp   span   col   技术   

原文地址:https://www.cnblogs.com/quanquan616/p/8682195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!