René's URL Explorer Experiment


Title: Design and History FAQ — Python 2.7.18 documentation

direct link

Domain: docs.python.org

Links:

no longer supportedhttps://devguide.python.org/devcycle/#end-of-life-branches
Python documentation for the current stable releasehttps://docs.python.org/3/faq/design.html
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/faq/library.html
previoushttps://docs.python.org/2/faq/programming.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
Python Frequently Asked Questionshttps://docs.python.org/2/faq/index.html
Design and History FAQhttps://docs.python.org/2/faq/design.html#id1
https://docs.python.org/2/faq/design.html#design-and-history-faq
Design and History FAQhttps://docs.python.org/2/faq/design.html#design-and-history-faq
Why does Python use indentation for grouping of statements?https://docs.python.org/2/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements
Why am I getting strange results with simple arithmetic operations?https://docs.python.org/2/faq/design.html#why-am-i-getting-strange-results-with-simple-arithmetic-operations
Why are floating point calculations so inaccurate?https://docs.python.org/2/faq/design.html#why-are-floating-point-calculations-so-inaccurate
Why are Python strings immutable?https://docs.python.org/2/faq/design.html#why-are-python-strings-immutable
Why must ‘self’ be used explicitly in method definitions and calls?https://docs.python.org/2/faq/design.html#why-must-self-be-used-explicitly-in-method-definitions-and-calls
Why can’t I use an assignment in an expression?https://docs.python.org/2/faq/design.html#why-can-t-i-use-an-assignment-in-an-expression
Why does Python use methods for some functionality (e.g. list.index()) but functions for other (e.g. len(list))?https://docs.python.org/2/faq/design.html#why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list
Why is join() a string method instead of a list or tuple method?https://docs.python.org/2/faq/design.html#why-is-join-a-string-method-instead-of-a-list-or-tuple-method
How fast are exceptions?https://docs.python.org/2/faq/design.html#how-fast-are-exceptions
Why isn’t there a switch or case statement in Python?https://docs.python.org/2/faq/design.html#why-isn-t-there-a-switch-or-case-statement-in-python
Can’t you emulate threads in the interpreter instead of relying on an OS-specific thread implementation?https://docs.python.org/2/faq/design.html#can-t-you-emulate-threads-in-the-interpreter-instead-of-relying-on-an-os-specific-thread-implementation
Why can’t lambda expressions contain statements?https://docs.python.org/2/faq/design.html#why-can-t-lambda-expressions-contain-statements
Can Python be compiled to machine code, C or some other language?https://docs.python.org/2/faq/design.html#can-python-be-compiled-to-machine-code-c-or-some-other-language
How does Python manage memory?https://docs.python.org/2/faq/design.html#how-does-python-manage-memory
Why isn’t all memory freed when Python exits?https://docs.python.org/2/faq/design.html#why-isn-t-all-memory-freed-when-python-exits
Why are there separate tuple and list data types?https://docs.python.org/2/faq/design.html#why-are-there-separate-tuple-and-list-data-types
How are lists implemented in CPython?https://docs.python.org/2/faq/design.html#how-are-lists-implemented-in-cpython
How are dictionaries implemented in CPython?https://docs.python.org/2/faq/design.html#how-are-dictionaries-implemented-in-cpython
Why must dictionary keys be immutable?https://docs.python.org/2/faq/design.html#why-must-dictionary-keys-be-immutable
Why doesn’t list.sort() return the sorted list?https://docs.python.org/2/faq/design.html#why-doesn-t-list-sort-return-the-sorted-list
How do you specify and enforce an interface spec in Python?https://docs.python.org/2/faq/design.html#how-do-you-specify-and-enforce-an-interface-spec-in-python
Why is there no goto?https://docs.python.org/2/faq/design.html#why-is-there-no-goto
Why can’t raw strings (r-strings) end with a backslash?https://docs.python.org/2/faq/design.html#why-can-t-raw-strings-r-strings-end-with-a-backslash
Why doesn’t Python have a “with” statement for attribute assignments?https://docs.python.org/2/faq/design.html#why-doesn-t-python-have-a-with-statement-for-attribute-assignments
Why are colons required for the if/while/def/class statements?https://docs.python.org/2/faq/design.html#why-are-colons-required-for-the-if-while-def-class-statements
Why does Python allow commas at the end of lists and tuples?https://docs.python.org/2/faq/design.html#why-does-python-allow-commas-at-the-end-of-lists-and-tuples
Why does Python use indentation for grouping of statements?https://docs.python.org/2/faq/design.html#id2
https://docs.python.org/2/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements
Why am I getting strange results with simple arithmetic operations?https://docs.python.org/2/faq/design.html#id3
https://docs.python.org/2/faq/design.html#why-am-i-getting-strange-results-with-simple-arithmetic-operations
Why are floating point calculations so inaccurate?https://docs.python.org/2/faq/design.html#id4
https://docs.python.org/2/faq/design.html#why-are-floating-point-calculations-so-inaccurate
floating point arithmetichttps://docs.python.org/2/tutorial/floatingpoint.html#tut-fp-issues
Why are Python strings immutable?https://docs.python.org/2/faq/design.html#id5
https://docs.python.org/2/faq/design.html#why-are-python-strings-immutable
Why must ‘self’ be used explicitly in method definitions and calls?https://docs.python.org/2/faq/design.html#id6
https://docs.python.org/2/faq/design.html#why-must-self-be-used-explicitly-in-method-definitions-and-calls
__init__()https://docs.python.org/2/reference/datamodel.html#object.__init__
Why can’t I use an assignment in an expression?https://docs.python.org/2/faq/design.html#id7
https://docs.python.org/2/faq/design.html#why-can-t-i-use-an-assignment-in-an-expression
Why does Python use methods for some functionality (e.g. list.index()) but functions for other (e.g. len(list))?https://docs.python.org/2/faq/design.html#id8
https://docs.python.org/2/faq/design.html#why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list
https://mail.python.org/pipermail/python-3000/2006-November/004643.htmlhttps://mail.python.org/pipermail/python-3000/2006-November/004643.html
Why is join() a string method instead of a list or tuple method?https://docs.python.org/2/faq/design.html#id9
https://docs.python.org/2/faq/design.html#why-is-join-a-string-method-instead-of-a-list-or-tuple-method
split()https://docs.python.org/2/library/stdtypes.html#str.split
join()https://docs.python.org/2/library/stdtypes.html#str.join
How fast are exceptions?https://docs.python.org/2/faq/design.html#id10
https://docs.python.org/2/faq/design.html#how-fast-are-exceptions
Why isn’t there a switch or case statement in Python?https://docs.python.org/2/faq/design.html#id11
https://docs.python.org/2/faq/design.html#why-isn-t-there-a-switch-or-case-statement-in-python
PEP 275https://www.python.org/dev/peps/pep-0275
getattr()https://docs.python.org/2/library/functions.html#getattr
Can’t you emulate threads in the interpreter instead of relying on an OS-specific thread implementation?https://docs.python.org/2/faq/design.html#id12
https://docs.python.org/2/faq/design.html#can-t-you-emulate-threads-in-the-interpreter-instead-of-relying-on-an-os-specific-thread-implementation
Stackless Pythonhttp://www.stackless.com
Why can’t lambda expressions contain statements?https://docs.python.org/2/faq/design.html#id13
https://docs.python.org/2/faq/design.html#why-can-t-lambda-expressions-contain-statements
Can Python be compiled to machine code, C or some other language?https://docs.python.org/2/faq/design.html#id14
https://docs.python.org/2/faq/design.html#can-python-be-compiled-to-machine-code-c-or-some-other-language
Cythonhttp://cython.org/
Nuitkahttp://www.nuitka.net/
VOChttps://voc.readthedocs.io
How does Python manage memory?https://docs.python.org/2/faq/design.html#id15
https://docs.python.org/2/faq/design.html#how-does-python-manage-memory
gchttps://docs.python.org/2/library/gc.html#module-gc
withhttps://docs.python.org/2/reference/compound_stmts.html#with
Why isn’t all memory freed when Python exits?https://docs.python.org/2/faq/design.html#id16
https://docs.python.org/2/faq/design.html#why-isn-t-all-memory-freed-when-python-exits
atexithttps://docs.python.org/2/library/atexit.html#module-atexit
Why are there separate tuple and list data types?https://docs.python.org/2/faq/design.html#id17
https://docs.python.org/2/faq/design.html#why-are-there-separate-tuple-and-list-data-types
How are lists implemented in CPython?https://docs.python.org/2/faq/design.html#id18
https://docs.python.org/2/faq/design.html#how-are-lists-implemented-in-cpython
How are dictionaries implemented in CPython?https://docs.python.org/2/faq/design.html#id19
https://docs.python.org/2/faq/design.html#how-are-dictionaries-implemented-in-cpython
hash()https://docs.python.org/2/library/functions.html#hash
Why must dictionary keys be immutable?https://docs.python.org/2/faq/design.html#id20
https://docs.python.org/2/faq/design.html#why-must-dictionary-keys-be-immutable
ishttps://docs.python.org/2/reference/expressions.html#is
__eq__()https://docs.python.org/2/reference/datamodel.html#object.__eq__
__hash__()https://docs.python.org/2/reference/datamodel.html#object.__hash__
Why doesn’t list.sort() return the sorted list?https://docs.python.org/2/faq/design.html#id21
https://docs.python.org/2/faq/design.html#why-doesn-t-list-sort-return-the-sorted-list
sorted()https://docs.python.org/2/library/functions.html#sorted
How do you specify and enforce an interface spec in Python?https://docs.python.org/2/faq/design.html#id22
https://docs.python.org/2/faq/design.html#how-do-you-specify-and-enforce-an-interface-spec-in-python
abchttps://docs.python.org/2/library/abc.html#module-abc
isinstance()https://docs.python.org/2/library/functions.html#isinstance
issubclass()https://docs.python.org/2/library/functions.html#issubclass
collectionshttps://docs.python.org/2/library/collections.html#module-collections
Iterablehttps://docs.python.org/2/library/collections.html#collections.Iterable
Containerhttps://docs.python.org/2/library/collections.html#collections.Container
MutableMappinghttps://docs.python.org/2/library/collections.html#collections.MutableMapping
doctesthttps://docs.python.org/2/library/doctest.html#module-doctest
unittesthttps://docs.python.org/2/library/unittest.html#module-unittest
Why is there no goto?https://docs.python.org/2/faq/design.html#id23
https://docs.python.org/2/faq/design.html#why-is-there-no-goto
Why can’t raw strings (r-strings) end with a backslash?https://docs.python.org/2/faq/design.html#id24
https://docs.python.org/2/faq/design.html#why-can-t-raw-strings-r-strings-end-with-a-backslash
Why doesn’t Python have a “with” statement for attribute assignments?https://docs.python.org/2/faq/design.html#id25
https://docs.python.org/2/faq/design.html#why-doesn-t-python-have-a-with-statement-for-attribute-assignments
Why are colons required for the if/while/def/class statements?https://docs.python.org/2/faq/design.html#id26
https://docs.python.org/2/faq/design.html#why-are-colons-required-for-the-if-while-def-class-statements
Why does Python allow commas at the end of lists and tuples?https://docs.python.org/2/faq/design.html#id27
https://docs.python.org/2/faq/design.html#why-does-python-allow-commas-at-the-end-of-lists-and-tuples
Table of Contentshttps://docs.python.org/2/contents.html
Design and History FAQhttps://docs.python.org/2/faq/design.html
Why does Python use indentation for grouping of statements?https://docs.python.org/2/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements
Why am I getting strange results with simple arithmetic operations?https://docs.python.org/2/faq/design.html#why-am-i-getting-strange-results-with-simple-arithmetic-operations
Why are floating point calculations so inaccurate?https://docs.python.org/2/faq/design.html#why-are-floating-point-calculations-so-inaccurate
Why are Python strings immutable?https://docs.python.org/2/faq/design.html#why-are-python-strings-immutable
Why must ‘self’ be used explicitly in method definitions and calls?https://docs.python.org/2/faq/design.html#why-must-self-be-used-explicitly-in-method-definitions-and-calls
Why can’t I use an assignment in an expression?https://docs.python.org/2/faq/design.html#why-can-t-i-use-an-assignment-in-an-expression
Why does Python use methods for some functionality (e.g. list.index()) but functions for other (e.g. len(list))?https://docs.python.org/2/faq/design.html#why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list
Why is join() a string method instead of a list or tuple method?https://docs.python.org/2/faq/design.html#why-is-join-a-string-method-instead-of-a-list-or-tuple-method
How fast are exceptions?https://docs.python.org/2/faq/design.html#how-fast-are-exceptions
Why isn’t there a switch or case statement in Python?https://docs.python.org/2/faq/design.html#why-isn-t-there-a-switch-or-case-statement-in-python
Can’t you emulate threads in the interpreter instead of relying on an OS-specific thread implementation?https://docs.python.org/2/faq/design.html#can-t-you-emulate-threads-in-the-interpreter-instead-of-relying-on-an-os-specific-thread-implementation
Why can’t lambda expressions contain statements?https://docs.python.org/2/faq/design.html#why-can-t-lambda-expressions-contain-statements
Can Python be compiled to machine code, C or some other language?https://docs.python.org/2/faq/design.html#can-python-be-compiled-to-machine-code-c-or-some-other-language
How does Python manage memory?https://docs.python.org/2/faq/design.html#how-does-python-manage-memory
Why isn’t all memory freed when Python exits?https://docs.python.org/2/faq/design.html#why-isn-t-all-memory-freed-when-python-exits
Why are there separate tuple and list data types?https://docs.python.org/2/faq/design.html#why-are-there-separate-tuple-and-list-data-types
How are lists implemented in CPython?https://docs.python.org/2/faq/design.html#how-are-lists-implemented-in-cpython
How are dictionaries implemented in CPython?https://docs.python.org/2/faq/design.html#how-are-dictionaries-implemented-in-cpython
Why must dictionary keys be immutable?https://docs.python.org/2/faq/design.html#why-must-dictionary-keys-be-immutable
Why doesn’t list.sort() return the sorted list?https://docs.python.org/2/faq/design.html#why-doesn-t-list-sort-return-the-sorted-list
How do you specify and enforce an interface spec in Python?https://docs.python.org/2/faq/design.html#how-do-you-specify-and-enforce-an-interface-spec-in-python
Why is there no goto?https://docs.python.org/2/faq/design.html#why-is-there-no-goto
Why can’t raw strings (r-strings) end with a backslash?https://docs.python.org/2/faq/design.html#why-can-t-raw-strings-r-strings-end-with-a-backslash
Why doesn’t Python have a “with” statement for attribute assignments?https://docs.python.org/2/faq/design.html#why-doesn-t-python-have-a-with-statement-for-attribute-assignments
Why are colons required for the if/while/def/class statements?https://docs.python.org/2/faq/design.html#why-are-colons-required-for-the-if-while-def-class-statements
Why does Python allow commas at the end of lists and tuples?https://docs.python.org/2/faq/design.html#why-does-python-allow-commas-at-the-end-of-lists-and-tuples
Programming FAQhttps://docs.python.org/2/faq/programming.html
Library and Extension FAQhttps://docs.python.org/2/faq/library.html
Show Sourcehttps://docs.python.org/2/_sources/faq/design.rst.txt
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/faq/library.html
previoushttps://docs.python.org/2/faq/programming.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
Python Frequently Asked Questionshttps://docs.python.org/2/faq/index.html
Copyrighthttps://docs.python.org/2/copyright.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/2/bugs.html
Sphinxhttp://sphinx.pocoo.org/

URLs of crawlers that visited me.