As a user, how would I know how many arguments and what arguments I need to pass in a command line arguments program, since there is no input function applied to the script with some sort of indication stating, enter your name or age or etc...or how a user know that age comes first or name come first or address ?
just a general question for my understanding, as im going through a python learning process.
It is good practice to write programs in such a way that an error is raised if you specify the wrong number of arguments.
And you can always open the program itself and take a look :)