Iam trying with a simple script where i wanted to print the value that parsed via command line. But while running the script, it doesn't produce the expected output
the program name is python commadn_line_argu.py
import sys
def main():
for arg in sys.argv[1:]:
print "Given arfument is ", arg
if __name__=="_main_":
main()
please see the attached screen shot for the same
Appreciate if anyone can help on it
Thanks