I want the user to enter the arguments using command line with variable names in the command line itself.
For example,
python test.py a=10 b=20
The code should be able to use a=10 and b=10 wherever needed.
I am able to achieve python test.py 10 20 but not the above given thing. I am wondering if that is even possible in python?