Is it main file : Main « Introduction « Python Tutorial






def hello():
    print "Hello, world!"

def test():
    hello()

if __name__ == '__main__': test()








1.8.Main
1.8.1.Is it main file