So I'm working on something right now and I'm trying to be able to run it in the command line. I was able to run my python file given this command "python ./pythonprogram.py arg1"
However,
"python ./pythonprogram.py < arg1"
should apparently work as well. E.g. this article says that the "symbol" indicates that arg1 is suppose to be inputted into the program on the left. Am i missing something? Is Python an exception and can arguments only be passed via a space? Thank you!