python

超轻量级php框架startmvc

python3 动态模块导入与全局变量使用实例

更新时间:2020-08-15 21:12:01 作者:startmvc
动态导入有两种:1__main__():f="demo.A"aa=__main__(f)aa.A.t()2importimportlib:importimportlibf="demo.A"aa=importl

动态导入有两种:

1 __main__():


f="demo.A"

aa=__main__(f)

aa.A.t()

2 import importlib:


import importlib

f="demo.A"

aa=importlib.import_module(f)

aa.t()

全局变量使用:


global_list.py:

size=None

A.py:

from demo import global_list

global_list.size=101

from demo.B import *

t()

B.py:

from demo import global_list

def t():

global_list.size+=100

print(global_list.size)

类似的php


A.php:

$size=101

include_once "./B.php"

t();

echo $size;

B.php:

function t(){

 global $size;

 $size+=100;

 echo $size;

}

以上这篇python3 动态模块导入与全局变量使用实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

python3 模块导入 全局变量