I have been trying this python myscript.py filename.txt
print(args[1]) --> filename.txt - This is Ok
But when I want to try python myscript.py file name.txt print(args[1]) --> file -- I hope to take the full string "file name.txt"
Any idea?, Thanks a lot.