Mega Code Archive

 
Categories / Python Tutorial / Introduction
 

Is it main file

def hello():     print "Hello, world!" def test():     hello() if __name__ == '__main__': test()