Hi, I find in all books and websites that in order to run a Python script from the command prompt, I have to run something like this
python example.py 1.3
where example.py script is provided with an argument of 1.3. However, it is not working for me in Windows 7 until I delete the python part, so that the command looks like:
example.py 1.3
I have already changed the path variable of Windows to include the Python directory. Why isn't the python word necessary for me, even though it's mentioned everywhere? And why does it throw an error when I use the python word See the image to understand my problem.