How to give comand line Arguments in python ? Program to to pass Arguments before run time?


 Program to to pass Arguments  before run time??

import sys
for i in sys.argv[1:]:
    print i


EX:

Comments