Skip to content Skip to sidebar Skip to footer

Running A Python Script From A Command Line In Windows

I'm currently following the book, 'Learning Python The Hard Way' and I am stuck trying to make a script run from the command line. I have saved this text: from sys import argv scr

Solution 1:

It looks like you are typing the line

python ex13.py first2nd 3rd

into the python interpreter. You are supposed to type that at the cmd prompt.

Post a Comment for "Running A Python Script From A Command Line In Windows"