forked from NikolaiT/GoogleScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchunks.txt
29 lines (29 loc) · 2.91 KB
/
chunks.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"Python is a multi-paradigm programming language: object-oriented programming and structured programming are fully supported"
" and there are a number of language features which support functional programming and aspect-oriented programming (including by metaprogramming[32] and by magic methods)"
"[33] Many other paradigms are supported using extensions, including design by contract[34][35] and logic programming"
"[36]Python uses dynamic typing and a combination of reference counting and a cycle-detecting garbage collector for memory management"
" An important feature of Python is dynamic name resolution (late binding)"
" which binds method and variable names during program execution"
"The design of Python offers only limited support for functional programming in the Lisp tradition"
" reduce() and filter() functions; comprehensions for lists"
" and sets; as well as generator expressions"
"[37] The standard library has two modules (itertools and functools) that implement functional tools borrowed from Haskell and Standard ML"
"[38]The core philosophy of the language is summarized by the document "PEP 20 (The Zen of Python)""
" which includes aphorisms such as:[39] Beautiful is better than ugly Explicit is better than implicit Simple is better than complex Complex is better than complicated Readability countsRather than requiring all desired functionality to be built into the language's core"
" Python was designed to be highly extensible"
" Python can also be embedded in existing applications that need a programmable interface"
" This design of a small core language with a large standard library and an easily extensible interpreter was intended by Van Rossum from the very start because of his frustrations with ABC (which espoused the opposite mindset)"
"[25]While offering choice in coding methodology"
" the Python philosophy rejects exuberant syntax"
" As Alex Martelli put it: "To describe something as clever is not considered a compliment in the Python culture"
""[40] Python's philosophy rejects the Perl "there is more than one way to do it" approach to language design in favor of "there should be one—and preferably only one—obvious way to do it""
"[39]Python's developers strive to avoid premature optimization"
" reject patches to non-critical parts of CPython which would offer a marginal increase in speed at the cost of clarity"
"[41] When speed is important"
" Python programmers use PyPy"
" or move time-critical functions to extension modules written in languages such as C"
" Cython is also available which translates a Python script into C and makes direct C level API calls into the Python interpreter"
"An important goal of the Python developers is making Python fun to use"
" This is reflected in the origin of the name which comes from Monty Python"
"[42] and in an occasionally playful approach to tutorials and reference materials"
" for example using spam and eggs instead of the standard foo and bar"