from module import xxx
对 module.xxx 的修改在重新 import 后不会起效:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
print __name__
from math import __name__
print __name__
__name__ ="hello"
print __name__
from math import __name__
print __name__
输出:
__main__
math
hello
math