If I have a scripts test.py which contains some arguments. I run this shell
python test.py --a this_a --b this_b
I want to get this string python test.py --a this_a --b this_b
in test.py. How can I get this?
If I have a scripts test.py which contains some arguments. I run this shell
python test.py --a this_a --b this_b
I want to get this string python test.py --a this_a --b this_b
in test.py. How can I get this?