Python:新手类对象实践和__main__

时间:2011-10-02 03:12:06

标签: python

我一直试图通过添加

来练习测试我的模块
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()

1 个答案:

答案 0 :(得分:1)

这不是一个功能,它是一种方法。您需要从对象中调用该方法。

p = Prac()
p.Fun()

Read this.