Copyright (c) Hyperion Entertainment and contributors.
Difference between revisions of "AmigaOS Manual: Python Glossary"
Jump to navigation
Jump to search
(Added bytecode definition) |
m |
||
Line 8: | Line 8: | ||
; class variable |
; class variable |
||
− | : A variable defined in a class and intended to be modified only at class level |
+ | : A variable defined in a class and intended to be modified only at class level. |
; coercion |
; coercion |
Revision as of 17:16, 12 February 2021
This glossary provides definitions of terms used in the Python manual.
- bytecode
- Bytecode is a compiled format of a Python program. When a Python program is executed, it is first assembled into bytecode which is then executed by the Python interpreter (also known as a Python virtual machine). Python bytecode files have a .pyc extension.
- class
- A template for creating user-defined objects.
- class variable
- A variable defined in a class and intended to be modified only at class level.
- coercion
- coroutine
- coroutine function
- decorator
- descriptor
- dictionary
- function
- function object
- garbage collection
- generator
- generator iterator
- immutable
- import path
- importing
- importer
- lambda
- list
- metaclass
- method
- module
- namespace
- object
- package
- regular package
- set
- slice
- tuple
- virtual machine