I would like to get the sys.argv as below:
# main.py
import sys
arguments = sys.argv
print(arguments[1])
$ python main.py \\
I want: \
But this comes instead: \\
I would like to get the sys.argv as below:
# main.py
import sys
arguments = sys.argv
print(arguments[1])
$ python main.py \\
I want: \
But this comes instead: \\