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