I am studying Python as a novice programmer. I have seen argv, as in sys.argv used and I believe it is used in other languages as well. What is the significance of the 'v' in 'argv'? What does it stand for and where does the term originate?
I am hoping this will help me understand and remember the use of "argv".
C
, I believe. Thev
inargv
is for argument 'vector' (and the accompanyingargc
was the argument 'count'). – Clearly