#save as mul.
py
def print_table(ourNum):
for x in range (1,11):
result=ourNum * x
print(ourNum," * ",x," = ",result)
#save as another filename
import mul
ourNum=int(input("Enter the table Number"))
mul.print_table(ourNum)
Command line Argument
import sys
print('Number of Arguments:',len([Link]))
num = int([Link][1])
if (num % 2) == 0:
print ('The number is even')
else:
print ('The provided number is odd')