Computer Science, asked by irshadali7298, 1 year ago

What does sys.argv[1:] mean?

Answers

Answered by sohailraja71
0

sys.argv : argv is a variable provided by the sys module which holds a list of all the arguments passed to the command line (including the script name). ... The argv variable always contains at least one element i.e the script name. The arguments in argv are always parsed as string

Similar questions