For learning purposes, I wrote a test.py which simply will print out "Hello World". Now the problem is that I want to have like an installer for Windows so the program installs and executes after being installed.
test.py
hello()
def hello():
print('HELLO WORLD')
So do I have to change the code in the program a little bit or something else?