我一直试图通过添加
来练习测试我的模块if __name__ == '__main__':
到模块的末尾。我们的想法是将模块作为脚本运行,并获得输出 并能够从另一个脚本或交互式python会话中导入它。
我正在使用Python 2.6.6
这是整个代码
class Prac:
'''
This module is a practice in creating a main within a module.
'''
def Fun(self):
print "testing function call"
if __name__ == ' __main__':
Fun()