on Windows it's possible to run a python script >like_so.py
, with the help of the Python launcher for Windows and file associations.
here's two line python script, like_so.py
:
import sys
print(sys.argv[0])
on unix when running it $./like_so.py
from the terminal, the output is ./like_so.py
is the behavior consistent on Windows?
when running it on Windows >like_so.py
is the output like_so.py
?