Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efae8c4 commit 656aa28Copy full SHA for 656aa28
1 file changed
Doc/glossary.rst
@@ -498,6 +498,13 @@ Glossary
498
object has a type. An object's type is accessible as its
499
:attr:`__class__` attribute or can be retrieved with ``type(obj)``.
500
501
+ view
502
+ The objects returned from :meth:`dict.keys`, :meth:`dict.items`, and
503
+ :meth:`dict.items` are called dictionary views. They are lazy sequences
504
+ that will see changes in the underlying dictionary. To force the
505
+ dictionary view to become a full list use ``list(dictview)``. See
506
+ :ref:`dict-views`.
507
+
508
virtual machine
509
A computer defined entirely in software. Python's virtual machine
510
executes the :term:`bytecode` emitted by the bytecode compiler.
0 commit comments