What does 'sys.argv' mean?

社会主义新天地 提交于 2019-11-28 07:51:24

The difference is, that sys.argv (command line) parameters are given before the program is running (while starting it):

python testcode.py arg1 arg2 arg3 arg4 and so on ...

This would result in your variables being:

Omega_a = 'arg1'
Omega_b = 'arg2'
Delta_a = 'arg3'
Delta_b = 'arg4'
init_pop_a = 'and'
init_pop_b = 'so'
tstep = 'on'
tfinal = '...'

While the input()s are given when the program is running.

As you do not start the program with parameters it gives you the error, because there are not enough (exactly 0) parameters to be unpacked into the variables.

jdi

All of the other answers explained sys.argv just fine, but I think there was a piece of fundamental terminology that was missing. I just wanted to add that...

input() tells your program to read from stdin.

It's like reading from a file and is a stream. The input() call reads until a newline is reached. You can also read stdin until an EOF is reached (end of file).

sys.argv on the other hand is simply a list that is made available to you from the system containing all the arguments that were used to call the command from the shell. Technically there is some type of limit (on a system-by-system basis) to the maximum number of arguments that can be passed on the command line, which is why the xargs command exists (to call your command with batches of your arguments, split up).

stdin

echo "I am stdin" | myCommand.py

... Which is the same concept under the hood as doing this AFTER your program is running:

read_from_stdin = input()

args

myCommand.py "I am an arg"

And finally, reading from stdin/input() will not automatically split your words into a list. There are extra methods for reading by line that you can use. But you can also read by character, a specific amount of characters at a time, or the entire amount of data at once.

Roman Bodnarchuk

sys.argv are called "command line parameters". If you want to pass them, you should run you script from a command line. On a Windows system the command would look like:

cmd> python C:\Users\testcode.py arg1 args2

where "cmd>" is the prompt you get after using "Start"->"Run".

Ry-

Parameters aren't the same as program input. For example, here's wget used with parameters:

$ wget "I am a parameter!"

Here's cat used with input:

$ cat
Now you type. This is the input.

That's the reason for your error, too - you can't specify the parameters as such after you run the program.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!