Command line argument with python
Command line argument with python
I am trying to execute below python script. But getting below issue after execution.
Code
#!/usr/bin/python
def Student(Student_Id):
msg = Student_Id + "." +
return msg
Error
C:UsersDesktop>Test.py 2asd
After an investigation found that argument which I am passing through the command line is considered as Null.
import sys
>>python Test.py 2asd
1 Answer
1
You need to call like
Test.py -n 2asd
Why? Please add more information
– Matt B.
Sep 4 at 6:57
There's no such requirement? Calling "Test.py 2asd" will put "2asd" in sys.argv[1].
– alkanen
Sep 4 at 9:44
The original question had optparse with an add_argument -n and the OP was calling Test.py 2asd without doing -n. Hence, the answer. See stackoverflow.com/posts/52152122/revisions
– Arun Kumar Nagarajan
Sep 4 at 10:35
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
you could
import sys
in your script and the first item in the comman line can be read in script as 'a = sys.argv[1]', where a is basically 2asd when read using the command>>python Test.py 2asd
– Khalil Al Hooti
Sep 3 at 15:08