How do I confirm my shebang line worked for python? I'm on a windows machine.
My default python is python3.3 but I would like to use python2.7 for my current script. How do I know if the shebang worked? This is my quick code to attempt to confirm
#!/usr/bin/python2.7.6
import sys
print (sys.version)
However, I am being told that I'm still on python3.3. I know this is simple but I haven't found anything that can quickly answer my question.