I have 3 arguments to give to my program but python recognizes more than 3. Ex :
./myprogram "fist argument" "second argument" "thrid one"
So sys.argv[1] will be - "first and sys.argv[2] will be argument
How can I have 3 only strings?
like string1 = "fist argument" ect..