# -*- coding: utf-8 -*- #python 27 #xiaodeng #如何调用模块的变量名? #my.py def printer(x): print x #如何调用模块的变量名? #怎么来获得该模块的属性? import my my.printer('xiaodeng')