84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
走同样的路,发现不同的人生
也就是说你这个数据生存周期是python运行周期。 这样的话你只需要独立一个模块儿(单文件或多文件)就可以。 比如calculator.py 内容为:
calculator.py
# coding=utf-8 __all__ = ["cal1"] _g = None class _Calculate(object): def __init__(self): pass def cal1(self): # do some calculate return if _g is None: _g = _Calculate() def cal1(): return _g.cal1()
使用方式 import calculator 或 from calculator import * 均可并不限于 Django
import calculator
from calculator import *
也就是说你这个数据生存周期是python运行周期。
这样的话你只需要独立一个模块儿(单文件或多文件)就可以。
比如
calculator.py
内容为:
使用方式
import calculator
或from calculator import *
均可并不限于 Django