René's URL Explorer Experiment
go
Title:
Glossary — Python 2.7.18 documentation
direct link
Domain:
docs.python.org
Links
:
no longer supported
https://devguide.python.org/devcycle/#end-of-life-branches
Python documentation for the current stable release
https://docs.python.org/3/glossary.html
index
https://docs.python.org/2/genindex.html
modules
https://docs.python.org/2/py-modindex.html
next
https://docs.python.org/2/about.html
previous
https://docs.python.org/2/faq/installed.html
Python
https://www.python.org/
Python 2.7.18 documentation
https://docs.python.org/2/index.html
¶
https://docs.python.org/2/glossary.html#glossary
lib2to3
https://docs.python.org/2/library/2to3.html#module-lib2to3
2to3 - Automated Python 2 to 3 code translation
https://docs.python.org/2/library/2to3.html#to3-reference
duck-typing
https://docs.python.org/2/glossary.html#term-duck-typing
hasattr()
https://docs.python.org/2/library/functions.html#hasattr
magic methods
https://docs.python.org/2/reference/datamodel.html#new-style-special-lookup
isinstance()
https://docs.python.org/2/library/functions.html#isinstance
issubclass()
https://docs.python.org/2/library/functions.html#issubclass
abc
https://docs.python.org/2/library/abc.html#module-abc
collections
https://docs.python.org/2/library/collections.html#module-collections
numbers
https://docs.python.org/2/library/numbers.html#module-numbers
io
https://docs.python.org/2/library/io.html#module-io
abc
https://docs.python.org/2/library/abc.html#module-abc
function
https://docs.python.org/2/glossary.html#term-function
method
https://docs.python.org/2/glossary.html#term-method
complex()
https://docs.python.org/2/library/functions.html#complex
iterable
https://docs.python.org/2/glossary.html#term-iterable
Calls
https://docs.python.org/2/reference/expressions.html#calls
parameter
https://docs.python.org/2/glossary.html#term-parameter
the difference between arguments and parameters
https://docs.python.org/2/faq/programming.html#faq-argument-vs-parameter
Guido van Rossum
https://www.python.org/~guido/
buffer protocol
https://docs.python.org/2/c-api/buffer.html#bufferobjects
str
https://docs.python.org/2/library/functions.html#str
bytearray
https://docs.python.org/2/library/functions.html#bytearray
memoryview
https://docs.python.org/2/library/stdtypes.html#memoryview
virtual machine
https://docs.python.org/2/glossary.html#term-virtual-machine
the dis module
https://docs.python.org/2/library/dis.html#bytecodes
object
https://docs.python.org/2/library/functions.html#object
new-style class
https://docs.python.org/2/glossary.html#term-new-style-class
math
https://docs.python.org/2/library/math.html#module-math
cmath
https://docs.python.org/2/library/cmath.html#module-cmath
with
https://docs.python.org/2/reference/compound_stmts.html#with
__enter__()
https://docs.python.org/2/reference/datamodel.html#object.__enter__
__exit__()
https://docs.python.org/2/reference/datamodel.html#object.__exit__
PEP 343
https://www.python.org/dev/peps/pep-0343
python.org
https://www.python.org
classmethod()
https://docs.python.org/2/library/functions.html#classmethod
staticmethod()
https://docs.python.org/2/library/functions.html#staticmethod
function definitions
https://docs.python.org/2/reference/compound_stmts.html#function
class definitions
https://docs.python.org/2/reference/compound_stmts.html#class
__get__()
https://docs.python.org/2/reference/datamodel.html#object.__get__
__set__()
https://docs.python.org/2/reference/datamodel.html#object.__set__
__delete__()
https://docs.python.org/2/reference/datamodel.html#object.__delete__
Implementing Descriptors
https://docs.python.org/2/reference/datamodel.html#descriptors
__hash__()
https://docs.python.org/2/reference/datamodel.html#object.__hash__
__eq__()
https://docs.python.org/2/reference/datamodel.html#object.__eq__
dict.viewkeys()
https://docs.python.org/2/library/stdtypes.html#dict.viewkeys
dict.viewvalues()
https://docs.python.org/2/library/stdtypes.html#dict.viewvalues
dict.viewitems()
https://docs.python.org/2/library/stdtypes.html#dict.viewitems
Dictionary view objects
https://docs.python.org/2/library/stdtypes.html#dict-views
type()
https://docs.python.org/2/library/functions.html#type
isinstance()
https://docs.python.org/2/library/functions.html#isinstance
abstract base classes
https://docs.python.org/2/glossary.html#term-abstract-base-class
hasattr()
https://docs.python.org/2/library/functions.html#hasattr
EAFP
https://docs.python.org/2/glossary.html#term-eafp
try
https://docs.python.org/2/reference/compound_stmts.html#try
except
https://docs.python.org/2/reference/compound_stmts.html#except
LBYL
https://docs.python.org/2/glossary.html#term-lbyl
statement
https://docs.python.org/2/glossary.html#term-statement
print
https://docs.python.org/2/reference/simple_stmts.html#print
if
https://docs.python.org/2/reference/compound_stmts.html#if
io
https://docs.python.org/2/library/io.html#module-io
open()
https://docs.python.org/2/library/functions.html#open
file object
https://docs.python.org/2/glossary.html#term-file-object
loader
https://docs.python.org/2/glossary.html#term-loader
PEP 302
https://www.python.org/dev/peps/pep-0302
PEP 238
https://www.python.org/dev/peps/pep-0238
arguments
https://docs.python.org/2/glossary.html#term-argument
parameter
https://docs.python.org/2/glossary.html#term-parameter
method
https://docs.python.org/2/glossary.html#term-method
Function definitions
https://docs.python.org/2/reference/compound_stmts.html#function
__future__
https://docs.python.org/2/library/__future__.html#module-__future__
yield
https://docs.python.org/2/reference/simple_stmts.html#yield
next()
https://docs.python.org/2/library/functions.html#next
yield
https://docs.python.org/2/reference/simple_stmts.html#yield
for
https://docs.python.org/2/reference/compound_stmts.html#for
if
https://docs.python.org/2/reference/compound_stmts.html#if
global interpreter lock
https://docs.python.org/2/glossary.html#term-global-interpreter-lock
CPython
https://docs.python.org/2/glossary.html#term-cpython
bytecode
https://docs.python.org/2/glossary.html#term-bytecode
dict
https://docs.python.org/2/library/stdtypes.html#dict
__hash__()
https://docs.python.org/2/reference/datamodel.html#object.__hash__
__eq__()
https://docs.python.org/2/reference/datamodel.html#object.__eq__
__cmp__()
https://docs.python.org/2/reference/datamodel.html#object.__cmp__
id()
https://docs.python.org/2/library/functions.html#id
float
https://docs.python.org/2/library/functions.html#float
coercion
https://docs.python.org/2/glossary.html#term-coercion
__future__
https://docs.python.org/2/glossary.html#term-future
finder
https://docs.python.org/2/glossary.html#term-finder
loader
https://docs.python.org/2/glossary.html#term-loader
interactive
https://docs.python.org/2/glossary.html#term-interactive
str
https://docs.python.org/2/library/functions.html#str
tuple
https://docs.python.org/2/library/functions.html#tuple
dict
https://docs.python.org/2/library/stdtypes.html#dict
file
https://docs.python.org/2/library/functions.html#file
__iter__()
https://docs.python.org/2/reference/datamodel.html#object.__iter__
__getitem__()
https://docs.python.org/2/reference/datamodel.html#object.__getitem__
for
https://docs.python.org/2/reference/compound_stmts.html#for
zip()
https://docs.python.org/2/library/functions.html#zip
map()
https://docs.python.org/2/library/functions.html#map
iter()
https://docs.python.org/2/library/functions.html#iter
iter()
https://docs.python.org/2/library/functions.html#iter
iterator
https://docs.python.org/2/glossary.html#term-iterator
sequence
https://docs.python.org/2/glossary.html#term-sequence
generator
https://docs.python.org/2/glossary.html#term-generator
next()
https://docs.python.org/2/reference/expressions.html#generator.next
StopIteration
https://docs.python.org/2/library/exceptions.html#exceptions.StopIteration
next()
https://docs.python.org/2/reference/expressions.html#generator.next
StopIteration
https://docs.python.org/2/library/exceptions.html#exceptions.StopIteration
__iter__()
https://docs.python.org/2/reference/datamodel.html#object.__iter__
iter()
https://docs.python.org/2/library/functions.html#iter
for
https://docs.python.org/2/reference/compound_stmts.html#for
Iterator Types
https://docs.python.org/2/library/stdtypes.html#typeiter
locale.strxfrm()
https://docs.python.org/2/library/locale.html#locale.strxfrm
min()
https://docs.python.org/2/library/functions.html#min
max()
https://docs.python.org/2/library/functions.html#max
sorted()
https://docs.python.org/2/library/functions.html#sorted
heapq.nsmallest()
https://docs.python.org/2/library/heapq.html#heapq.nsmallest
heapq.nlargest()
https://docs.python.org/2/library/heapq.html#heapq.nlargest
itertools.groupby()
https://docs.python.org/2/library/itertools.html#itertools.groupby
str.lower()
https://docs.python.org/2/library/stdtypes.html#str.lower
lambda
https://docs.python.org/2/reference/expressions.html#lambda
operator
https://docs.python.org/2/library/operator.html#module-operator
attrgetter()
https://docs.python.org/2/library/operator.html#operator.attrgetter
itemgetter()
https://docs.python.org/2/library/operator.html#operator.itemgetter
methodcaller()
https://docs.python.org/2/library/operator.html#operator.methodcaller
Sorting HOW TO
https://docs.python.org/2/howto/sorting.html#sortinghowto
argument
https://docs.python.org/2/glossary.html#term-argument
expression
https://docs.python.org/2/glossary.html#term-expression
EAFP
https://docs.python.org/2/glossary.html#term-eafp
if
https://docs.python.org/2/reference/compound_stmts.html#if
sequence
https://docs.python.org/2/glossary.html#term-sequence
if
https://docs.python.org/2/reference/compound_stmts.html#if
finder
https://docs.python.org/2/glossary.html#term-finder
PEP 302
https://www.python.org/dev/peps/pep-0302
special method
https://docs.python.org/2/glossary.html#term-special-method
Mapping
https://docs.python.org/2/library/collections.html#collections.Mapping
MutableMapping
https://docs.python.org/2/library/collections.html#collections.MutableMapping
abstract base classes
https://docs.python.org/2/library/collections.html#collections-abstract-base-classes
dict
https://docs.python.org/2/library/stdtypes.html#dict
collections.defaultdict
https://docs.python.org/2/library/collections.html#collections.defaultdict
collections.OrderedDict
https://docs.python.org/2/library/collections.html#collections.OrderedDict
collections.Counter
https://docs.python.org/2/library/collections.html#collections.Counter
Customizing class creation
https://docs.python.org/2/reference/datamodel.html#metaclasses
argument
https://docs.python.org/2/glossary.html#term-argument
function
https://docs.python.org/2/glossary.html#term-function
nested scope
https://docs.python.org/2/glossary.html#term-nested-scope
The Python 2.3 Method Resolution Order
https://www.python.org/download/releases/2.3/mro/
importing
https://docs.python.org/2/glossary.html#term-importing
package
https://docs.python.org/2/glossary.html#term-package
method resolution order
https://docs.python.org/2/glossary.html#term-method-resolution-order
id()
https://docs.python.org/2/library/functions.html#id
immutable
https://docs.python.org/2/glossary.html#term-immutable
time.localtime()
https://docs.python.org/2/library/time.html#time.localtime
time.struct_time
https://docs.python.org/2/library/time.html#time.struct_time
collections.namedtuple()
https://docs.python.org/2/library/collections.html#collections.namedtuple
os.open()
https://docs.python.org/2/library/os.html#os.open
random.seed()
https://docs.python.org/2/library/random.html#random.seed
itertools.izip()
https://docs.python.org/2/library/itertools.html#itertools.izip
random
https://docs.python.org/2/library/random.html#module-random
itertools
https://docs.python.org/2/library/itertools.html#module-itertools
object
https://docs.python.org/2/library/functions.html#object
dict
https://docs.python.org/2/library/stdtypes.html#dict
__getattribute__()
https://docs.python.org/2/reference/datamodel.html#object.__getattribute__
New-style and classic classes
https://docs.python.org/2/reference/datamodel.html#newstyle
new-style class
https://docs.python.org/2/glossary.html#term-new-style-class
module
https://docs.python.org/2/glossary.html#term-module
function
https://docs.python.org/2/glossary.html#term-function
argument
https://docs.python.org/2/glossary.html#term-argument
positionally
https://docs.python.org/2/glossary.html#term-argument
keyword argument
https://docs.python.org/2/glossary.html#term-argument
abs()
https://docs.python.org/2/library/functions.html#abs
argument
https://docs.python.org/2/glossary.html#term-argument
the difference between arguments and parameters
https://docs.python.org/2/faq/programming.html#faq-argument-vs-parameter
Function definitions
https://docs.python.org/2/reference/compound_stmts.html#function
PEP 1
https://www.python.org/dev/peps/pep-0001
argument
https://docs.python.org/2/glossary.html#term-argument
for
https://docs.python.org/2/reference/compound_stmts.html#for
CPython
https://docs.python.org/2/glossary.html#term-cpython
sys
https://docs.python.org/2/library/sys.html#module-sys
getrefcount()
https://docs.python.org/2/library/sys.html#sys.getrefcount
new-style class
https://docs.python.org/2/glossary.html#term-new-style-class
iterable
https://docs.python.org/2/glossary.html#term-iterable
__getitem__()
https://docs.python.org/2/reference/datamodel.html#object.__getitem__
len()
https://docs.python.org/2/library/functions.html#len
str
https://docs.python.org/2/library/functions.html#str
tuple
https://docs.python.org/2/library/functions.html#tuple
unicode
https://docs.python.org/2/library/functions.html#unicode
dict
https://docs.python.org/2/library/stdtypes.html#dict
__getitem__()
https://docs.python.org/2/reference/datamodel.html#object.__getitem__
__len__()
https://docs.python.org/2/reference/datamodel.html#object.__len__
immutable
https://docs.python.org/2/glossary.html#term-immutable
sequence
https://docs.python.org/2/glossary.html#term-sequence
slice
https://docs.python.org/2/library/functions.html#slice
__getslice__()
https://docs.python.org/2/reference/datamodel.html#object.__getslice__
__setslice__()
https://docs.python.org/2/reference/datamodel.html#object.__setslice__
Special method names
https://docs.python.org/2/reference/datamodel.html#specialnames
expression
https://docs.python.org/2/glossary.html#term-expression
if
https://docs.python.org/2/reference/compound_stmts.html#if
while
https://docs.python.org/2/reference/compound_stmts.html#while
for
https://docs.python.org/2/reference/compound_stmts.html#for
named tuple
https://docs.python.org/2/glossary.html#term-named-tuple
_make()
https://docs.python.org/2/library/collections.html#collections.somenamedtuple._make
_asdict()
https://docs.python.org/2/library/collections.html#collections.somenamedtuple._asdict
sys.float_info
https://docs.python.org/2/library/sys.html#sys.float_info
os.stat()
https://docs.python.org/2/library/os.html#os.stat
__class__
https://docs.python.org/2/library/stdtypes.html#instance.__class__
PEP 278
https://www.python.org/dev/peps/pep-0278
PEP 3116
https://www.python.org/dev/peps/pep-3116
str.splitlines()
https://docs.python.org/2/library/stdtypes.html#str.splitlines
bytecode
https://docs.python.org/2/glossary.html#term-bytecode
“Why is Python Installed on my Computer?” FAQ
https://docs.python.org/2/faq/installed.html
About these documents
https://docs.python.org/2/about.html
Show Source
https://docs.python.org/2/_sources/glossary.rst.txt
index
https://docs.python.org/2/genindex.html
modules
https://docs.python.org/2/py-modindex.html
next
https://docs.python.org/2/about.html
previous
https://docs.python.org/2/faq/installed.html
Python
https://www.python.org/
Python 2.7.18 documentation
https://docs.python.org/2/index.html
Copyright
https://docs.python.org/2/copyright.html
Please donate.
https://www.python.org/psf/donations/
Found a bug
https://docs.python.org/2/bugs.html
Sphinx
http://sphinx.pocoo.org/
URLs of
crawlers that visited me
.