I\'m experimenting with file I/O. I have a small practice program that creates a text file when run. I packaged it with pyinstaller so that double clicking on the exe creates a
What you are looking for is something like the python argparse module
Or you can read the values directly using sys.argv
import sys sys.argv[0] # the name of the command that was called sys.argv[1] # the first argument, eg '--dev' sys.argv[2] # the second...