- I have a script named first_code.py
- The code in the script looks like
def function1(param1): return var1 def function2(param1): return var2 def function3(param1): return var3
I want to execute the script first_code.py from the windows command like and pass the value of the param1 such that: all the functions get executed or if I want to execute a specific function say function2.
How can I do that?