Remove duplicate explanation (GH-91534)

(cherry picked from commit 0e6dca0193)

Co-authored-by: Gouvernathor <44340603+Gouvernathor@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-04-17 21:44:58 -07:00 committed by GitHub
parent 531f66ad62
commit 0897a0bf9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4345,10 +4345,6 @@ then they can be used interchangeably to index the same dictionary entry. (Note
however, that since computers store floating-point numbers as approximations it
is usually unwise to use them as dictionary keys.)
Dictionaries can be created by placing a comma-separated list of ``key: value``
pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098:
'jack', 4127: 'sjoerd'}``, or by the :class:`dict` constructor.
.. class:: dict(**kwargs)
dict(mapping, **kwargs)
dict(iterable, **kwargs)