I want to try simple Python code test.py where I want to pass parameter.
import sys
result = 3 * 3 * <parameter>
print(result)
When I run the Python code i want to pass value as 3 in input parameter so that i can get result 27 at the end. I can run the python code after passing the value in the parameter. For example i can run the python code like below. Is it possible to do in Python ?
test.py 3