Horje
python arguments Code Example
python get command line arguments
import sys
print("This is the name of the script:", sys.argv[0])
print("Number of arguments:", len(sys.argv))
print("The arguments are:" , str(sys.argv))

#Example output
#This is the name of the script: sysargv.py
#Number of arguments in: 3
#The arguments are: ['sysargv.py', 'arg1', 'arg2']
pass argument to a py file
import sys

def hello(a,b):
    print "hello and that's your sum:", a + b

if __name__ == "__main__":
    a = int(sys.argv[1])
    b = int(sys.argv[2])
    hello(a, b)
# If you type : py main.py 1 5
# It should give you "hello and that's your sum:6"
python read arguments
#!/usr/bin/python

import sys

print('Number of arguments:', len(sys.argv), 'arguments.')
print('Argument List:', str(sys.argv))
python arguments
import sys

print ("the script has the name %s" % (sys.argv[0])




Python

Related
unable to get local issuer certificate python Code Example unable to get local issuer certificate python Code Example
from django.contrib import messages Code Example from django.contrib import messages Code Example
how to uninstall python idle on ubuntu Code Example how to uninstall python idle on ubuntu Code Example
if else in 1 line python Code Example if else in 1 line python Code Example
make tkinter label and input Code Example make tkinter label and input Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7