美文网首页
python导入模块

python导入模块

作者: 圣地亚哥僵尸 | 来源:发表于2019-03-07 18:53 被阅读0次

    导入整个模块:

    import module_name   
    module_name.function()    //使用模块的函数
    

    导入模块中的特定函数:

    from module_name import function_name
    

    使用逗号分隔函数名,根据需要从模块中导入任意数量的函数:

    from module_name import function_0,function_1,function_2
    

    相关文章

      网友评论

          本文标题:python导入模块

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