Doc: Add omitted secondary prompt in inputoutput tutorial (GH-30317)

For the continuation lines, "..." should present as secondary prompt
This commit is contained in:
Chenwei Xiao 2022-07-23 17:25:42 +08:00 committed by GitHub
parent a3d4d15f53
commit de28ee8f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ are referred to by using the name of the argument. ::
Positional and keyword arguments can be arbitrarily combined:: Positional and keyword arguments can be arbitrarily combined::
>>> print('The story of {0}, {1}, and {other}.'.format('Bill', 'Manfred', >>> print('The story of {0}, {1}, and {other}.'.format('Bill', 'Manfred',
other='Georg')) ... other='Georg'))
The story of Bill, Manfred, and Georg. The story of Bill, Manfred, and Georg.
If you have a really long format string that you don't want to split up, it If you have a really long format string that you don't want to split up, it