美文网首页
2-3、python的库

2-3、python的库

作者: 懒羊羊3号 | 来源:发表于2019-05-15 17:33 被阅读0次

    shutil

    高级的 文件、文件夹、压缩包 处理模块

    copyfileobj // 将文件内容拷贝到另一个文件中
    copyfile // 拷贝文件
    copy // 拷贝文件和权限
    copy2 // 拷贝文件和状态信息
    

    json

    dumps // 对数据进行编码
    loads // 对数据进行解码
    

    os

    os.path.split(path) // 把路径分割成 dirname 和 basename,返回一个元组
    

    requirements.txt

    pip freeze > requirements.txt // 生成
    pip install -r requirements.txt // 安装依赖
    

    lambda

    # 生成100以内是3的倍数的列表
    list(filter(lambda x:True if x % 3 == 0 else False, range(100)))
    

    相关文章

      网友评论

          本文标题:2-3、python的库

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