Scoop is powerful tools to install package in Windows environment. So, python is and available via Scoop. Scoop will install Python version 3.x. But, if you still need python 2.7 for your development you will need to do followings.
Install alternative bucket for Scoop.
scoop bucket add versions
Install Python version 2.7.
scoop install python27
Validate the python 2.7 installation
python --version
To switch between python 2.7 and 3.x do the followings.
scoop reset python # Set default python to 3.xscoop reset python2 # Set default python to 2.7
Now, you are ready to use python 2.7 as your environment.