python模块之间的代码元素的访问
Posted 小肥羊要进步
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python模块之间的代码元素的访问相关的知识,希望对你有一定的参考价值。
1.一个模块本质就是一个文件,在模块中封装了很多代码元素。
1)导入所有内容:import语句
2)只导入一个元素,from import
3)如果名称有冲突 from import as
# @File : world.py
# @Software: PyCharm
#coding=utf-8
x=‘你好‘
y=True
z=20.0
# @File : hello.py
# @Software: PyCharm
#coding=utf-8
from test_module import world
from test_module.world import x as x2
from test_module.world import z
x=100
y=20
print(y) #访问当前模块变量y
print(world.y)#访问world模块变量y
print(z)#访问world模块变量z
print(x2) #x2是world模块x别名
以上是关于python模块之间的代码元素的访问的主要内容,如果未能解决你的问题,请参考以下文章