Q1: I´m calling a Python script with input arguments from a cmd terminal:
python hello.py arg1 arg2
Python.exe and hello.py are both in my PATH, arg1 and arg2 are filenames in my current directory, everything executes well if I give the full path to hello.py. Is it possible to omit the full path so that the PATH is searched for hello.py?
Q2: I tried to make the following call:
hello.py arg1 arg2
The PATH is searched for hello.py which opens with python.exe as the default program, but I can´t get it to accept the arguments. Is it possible to include the variables this way?