from * import 的实质

将被importmodule(python文件在当前环境下执行一遍。当多次import同一个module python会保证只执行一次。

import类似被导入的module仍然会执行且仅执行一次.区别是当以 "from *** import " 方式导入module, python会在当前module 的命名空间中新建相应的命名, "from t2 import var1" 相当于 mport t2

var1= t2.var1

由于python赋值操作特性在当前代码中对"var1"的修改并不能影响到t2.py"var1"的值同时t2.py中对var1的修改也不能反映到当前的代码.

t1.py
from t2 import var_in_t2
import t2

print "the initial value in t1.py is %s" % var_in_t2
print "the initial value in t2.py is %s" % t2.var_in_t2

print "now try to change the value in the t1.py"
var_in_t2 = 50
print "now the value in t1.py is %s" % var_in_t2
print "now the value in t2.py is %s"  % t2.var_in_t2

print "now try to change the value in the t2.py"
t2.var_in_t2 = 20
print "now the value in t1.py is %s" % var_in_t2
print "now the value in t2.py is %s"  % t2.var_in_t2

t2.py

var_in_t2 = 0
def change_var():
    global var_in_t2
    var_in_t2 = 100


python t1.py
the initial value in t1.py is 0
the initial value in t2.py is 0
now try to change the value in the t1.py
now the value in t1.py is 50
now the value in t2.py is 0
now try to change the value in the t2.py
now the value in t1.py is 50
now the value in t2.py is 20

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值