Editted Argument Passing Wikilink to include encoding for blank spaces in file names

This commit is contained in:
aCyberVoid 2024-11-26 13:21:03 -06:00
parent 7c16496a9a
commit 40b8aa2927

View file

@ -32,7 +32,7 @@ The Python interpreter is a program that executes Python code. It can be run int
- **Interactive Mode**: Reads and executes commands interactively when standard input is connected to a tty device. See [[Interactive Mode]] for details.
- **Script Mode**: Executes a script when a file name is provided as an argument or via standard input.
2. **Command-Line Options**:
- **`-c command [arg] ...`**: Executes the specified statements in the command string. For details on passing arguments, see [Argument Passing](./argument-passing.md).
- **`-c command [arg] ...`**: Executes the specified statements in the command string. For details on passing arguments, see [Argument Passing](./Argument%20Passing.md).
- **`-m module [arg] ...`**: Executes a module as a script by its full name.
- **`-i`**: Runs a script and then enters interactive mode.
## References: