美文网首页
Python批量读取文件

Python批量读取文件

作者: 坐看云起时zym | 来源:发表于2019-07-17 10:21 被阅读0次
    import os
    
    root = '输入绝对路径'
    file_names = os.listdir(root)
    file_ob_list = []
    for file_name in file_names:
        fileob = root + '/' + file_name
        file_ob_list.append(fileob)
    
    

    相关文章

      网友评论

          本文标题:Python批量读取文件

          本文链接:https://www.haomeiwen.com/subject/khnflctx.html