The following example has all the elements of a proper hello world Python script

#!/usr/bin/env python

def helloWorld():
    print("Hello World!")

if __name__ == '__main__':
    helloWorld()