Python - Environment Setup in Windows to run "Hello World" program

Python development requires a python distribution to interpret and execute the Python code. The python interpreter reads the code and checks the code is well formatted as per the specification and it will translate the python code to an equivalent byte code only if the python code is valid otherwise it will throw an error. Once the byte code generated successfully, it will execute the byte code using Python Virtual Machine PVM.