Remove duplicate explanation (GH-91534)

This commit is contained in:
Gouvernathor 2022-04-18 06:26:40 +02:00 committed by GitHub
parent d7d4a0583f
commit 0e6dca0193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -4383,10 +4383,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)