tutorial: remove "with single quotes" (GH-98204)

Closes GH-91856.

On Windows double quotes are sometimes better, on Unix usually
single quotes. It's not our place to explain that, so just don't.
(cherry picked from commit 5f8ca1b796)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Miss Islington (bot) 2022-10-12 09:08:56 -07:00 committed by GitHub
parent 316590116a
commit b2f037cce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ A second way of starting the interpreter is ``python -c command [arg] ...``,
which executes the statement(s) in *command*, analogous to the shell's which executes the statement(s) in *command*, analogous to the shell's
:option:`-c` option. Since Python statements often contain spaces or other :option:`-c` option. Since Python statements often contain spaces or other
characters that are special to the shell, it is usually advised to quote characters that are special to the shell, it is usually advised to quote
*command* in its entirety with single quotes. *command* in its entirety.
Some Python modules are also useful as scripts. These can be invoked using Some Python modules are also useful as scripts. These can be invoked using
``python -m module [arg] ...``, which executes the source file for *module* as ``python -m module [arg] ...``, which executes the source file for *module* as