我是靠谱客的博主 隐形大白,最近开发中收集的这篇文章主要介绍【PYTHON】模块(module)使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Python module

A module is a collection of functions and variables that have been bundled together in a single file.

working with the functions defined in modules

导入: import my_module 使用: my_module.some_function() 当模块名字太长时,导入: import my_module as m 使用: m.function1() 当模块包含的function太多,而只需使用其中几个时: from my_module import function1 使用: function1() 缺点是导入的这个function前不加模块前缀后,能被重写 导入所有function和object: from my_module import * 使用: function1() 缺点是会污染global namespace

内部执行如下:

 

working with the variables defined in modules

导入: import math 使用: print(math.pi) 模块中variables的使用类似functions

最后

以上就是隐形大白为你收集整理的【PYTHON】模块(module)使用的全部内容,希望文章能够帮你解决【PYTHON】模块(module)使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部