SlideShare a Scribd company logo
1 of 7
Download to read offline
The main Python implementation, named CPython, is written in C meeting the C89 standard.[82]
It compiles Python programs into intermediate bytecode,[83] which is executed by the virtual
machine.[84] CPython is distributed with a large standard library written in a mixture of C and
Python. It is available in versions for many platforms, including Windows and most modern
Unix-like systems. CPython was intended from almost its very conception to be cross-
platform.[85]
PyPy is a fast, compliant[86] interpreter of Python 2.7 and 3.2. Its just-in-time compiler brings a
significant speed improvement over CPython.[87] A version taking advantage of multi-core
processors using software transactional memory is being created.[88]
Stackless Python is a significant fork of CPython that implements microthreads; it does not use
the C memory stack, thus allowing massively concurrent programs. PyPy also has a stackless
version.[89]
MicroPython is a lean, fast Python 3 variant that is optimised to run on microcontrollers.
Other just-in-time compilers have been developed in the past, but are now unsupported:
In 2005, Nokia released a Python interpreter for the Series 60 mobile phones named PyS60. It
includes many of the modules from the CPython implementations and some added modules to
integrate with the Symbian operating system. This project has been kept up to date to run on all
variants of the S60 platform and there are several third party modules available. The Nokia N900
also supports Python with GTK widget libraries, with the feature that programs can be both
written and run on the target device.[91]
There are several compilers to high-level object languages, with either unrestricted Python, a
restricted subset of Python, or a language similar to Python as the source language:
A performance comparison of various Python implementations on a non-numerical
(combinatorial) workload was presented at EuroSciPy '13.[92]
Development[edit]
Python's development is conducted largely through the Python Enhancement Proposal (PEP)
process. The PEP process is the primary mechanism for proposing major new features, for
collecting community input on an issue, and for documenting the design decisions that have gone
into Python.[93] Outstanding PEPs are reviewed and commented upon by the Python community
and by Van Rossum, the Python project's benevolent dictator for life.[93]
Enhancement of the language goes along with development of the CPython reference
implementation. The mailing list python-dev is the primary forum for discussion about the
language's development; specific issues are discussed in theRoundup bug tracker maintained at
python.org.[94] Development takes place on a self-hosted source code repository running
Mercurial.[95]
CPython's public releases come in three types, distinguished by which part of the version
number is incremented:
Many alpha, beta, and release-candidates are also released as previews, and for testing before
final releases. Although there is a rough schedule for each release, this is often pushed back if the
code is not ready. The development team monitors the state of the code by running the large unit
test suite during development, and using the BuildBot continuous integration system.[98]
The community of Python developers has also contributed over 86,000[99] software modules (as
of August 20, 2016) to thePython Package Index (PyPI), the official repository of third-party
libraries for Python.
The major academic conference on Python is named PyCon. There are special mentoring
programmes like the Pyladies.
Naming[edit]
Python's name is derived from the television series Monty Python's Flying Circus,[100] and it is
common to use Monty Python references in example code.[101] For example, the metasyntactic
variables often used in Python literature are spam andeggs, instead of the traditional foo and
bar.[101][102] Also, the official Python documentation often contains various obscure Monty
Python references.
The prefix Py- is used to show that something is related to Python. Examples of the use of this
prefix in names of Python applications or libraries include Pygame, a binding of SDL to Python
(commonly used to create games); PyS60, an implementation for the Symbian S60 operating
system; PyQt and PyGTK, which bind Qt and GTK, respectively, to Python; and PyPy, a Python
implementation originally written in Python.
Uses[edit]
Main article: List of Python software
Since 2003, Python has consistently ranked in the top ten most popular programming languages
as measured by theTIOBE Programming Community Index. As of August 2016, it is the fifth
most popular language.[103] It was ranked as Programming Language of the Year for the year
2007 and 2010.[24] It is the third most popular language whosegrammatical syntax is not
predominantly based on C, e.g. C++, Objective-C (note, C# and Java only have partial syntactic
similarity to C, such as the use of curly braces, and are closer in similarity to each other than C).
An empirical study found scripting languages (such as Python) more productive than
conventional languages (such as C and Java) for a programming problem involving string
manipulation and search in a dictionary. Memory consumption was often "better than Java and
not much worse than C or C++".[104]
Large organizations that make use of Python include Google,[105] Yahoo!,[106] CERN,[107]
NASA,[108] and some smaller ones like ILM,[109] and ITA.[110] The social news networking
site, Reddit, is written entirely in Python.
Python can serve as a scripting language for web applications, e.g., via mod_wsgi for the Apache
web server.[111] With Web Server Gateway Interface, a standard API has evolved to facilitate
these applications. Web frameworks like Django, Pylons,Pyramid, TurboGears, web2py,
Tornado, Flask, Bottle and Zope support developers in the design and maintenance of complex
applications. Pyjamas and IronPython can be used to develop the client-side of Ajax-based
applications.SQLAlchemy can be used as data mapper to a relational database. Twisted is a
framework to program communications between computers, and is used (for example) by
Dropbox.
Libraries like NumPy, SciPy and Matplotlib allow the effective use of Python in scientific
computing,[112][113] with specialized libraries such as BioPython and Astropy providing
domain-specific functionality. Sage is a mathematical software with a "notebook"
programmable in Python: its library covers many aspects of mathematics, including algebra,
combinatorics,numerical mathematics, number theory, and calculus.
Python has been successfully embedded in many software products as a scripting language,
including in finite element method software such as Abaqus, 3D parametric modeler like
FreeCAD, 3D animation packages such as 3ds Max, Blender,Cinema 4D, Lightwave, Houdini,
Maya, modo, MotionBuilder, Softimage, the visual effects compositor Nuke, 2D imaging
programs like GIMP,[114] Inkscape, Scribus and Paint Shop Pro,[115] and musical notation
program or scorewriter capella.GNU Debugger uses Python as a pretty printer to show complex
structures such as C++ containers. Esri promotes Python as the best choice for writing scripts in
ArcGIS.[116] It has also been used in several video games,[117][118] and has been adopted as
first of the three available programming languages in Google App Engine, the other two being
Java and Go.[119]
Python has been used in artificial intelligence tasks.[120][121][122][123] As a scripting
language with module architecture, simple syntax and rich text processing tools, Python is often
used for natural language processing tasks.[124]
Many operating systems include Python as a standard component; the language ships with most
Linux distributions,AmigaOS 4, FreeBSD, NetBSD, OpenBSD and OS X, and can be used from
the terminal. Many Linux distributions use installers written in Python: Ubuntu uses the Ubiquity
installer, while Red Hat Linux and Fedora use the Anaconda installer.Gentoo Linux uses Python
in its package management system, Portage.
Python has also seen extensive use in the information security industry, including in exploit
development.[125][126]
Most of the Sugar software for the One Laptop per Child XO, now developed at Sugar Labs, is
written in Python.[127]
The Raspberry Pi single-board computer project has adopted Python as its main user-
programming language.
LibreOffice includes Python and intends to replace Java with Python. Python Scripting Provider
is a core feature[128] since Version 4.0 from 7 February 2013.
Languages influenced by Python[edit]
Python's design and philosophy have influenced several programming languages, including:
Python's development practices have also been emulated by other languages. The practice of
requiring a document describing the rationale for, and issues surrounding, a change to the
language (in Python's case, a PEP) is also used inTcl[138] and Erlang[139] because of Python's
influence.
Solution
The main Python implementation, named CPython, is written in C meeting the C89 standard.[82]
It compiles Python programs into intermediate bytecode,[83] which is executed by the virtual
machine.[84] CPython is distributed with a large standard library written in a mixture of C and
Python. It is available in versions for many platforms, including Windows and most modern
Unix-like systems. CPython was intended from almost its very conception to be cross-
platform.[85]
PyPy is a fast, compliant[86] interpreter of Python 2.7 and 3.2. Its just-in-time compiler brings a
significant speed improvement over CPython.[87] A version taking advantage of multi-core
processors using software transactional memory is being created.[88]
Stackless Python is a significant fork of CPython that implements microthreads; it does not use
the C memory stack, thus allowing massively concurrent programs. PyPy also has a stackless
version.[89]
MicroPython is a lean, fast Python 3 variant that is optimised to run on microcontrollers.
Other just-in-time compilers have been developed in the past, but are now unsupported:
In 2005, Nokia released a Python interpreter for the Series 60 mobile phones named PyS60. It
includes many of the modules from the CPython implementations and some added modules to
integrate with the Symbian operating system. This project has been kept up to date to run on all
variants of the S60 platform and there are several third party modules available. The Nokia N900
also supports Python with GTK widget libraries, with the feature that programs can be both
written and run on the target device.[91]
There are several compilers to high-level object languages, with either unrestricted Python, a
restricted subset of Python, or a language similar to Python as the source language:
A performance comparison of various Python implementations on a non-numerical
(combinatorial) workload was presented at EuroSciPy '13.[92]
Development[edit]
Python's development is conducted largely through the Python Enhancement Proposal (PEP)
process. The PEP process is the primary mechanism for proposing major new features, for
collecting community input on an issue, and for documenting the design decisions that have gone
into Python.[93] Outstanding PEPs are reviewed and commented upon by the Python community
and by Van Rossum, the Python project's benevolent dictator for life.[93]
Enhancement of the language goes along with development of the CPython reference
implementation. The mailing list python-dev is the primary forum for discussion about the
language's development; specific issues are discussed in theRoundup bug tracker maintained at
python.org.[94] Development takes place on a self-hosted source code repository running
Mercurial.[95]
CPython's public releases come in three types, distinguished by which part of the version
number is incremented:
Many alpha, beta, and release-candidates are also released as previews, and for testing before
final releases. Although there is a rough schedule for each release, this is often pushed back if the
code is not ready. The development team monitors the state of the code by running the large unit
test suite during development, and using the BuildBot continuous integration system.[98]
The community of Python developers has also contributed over 86,000[99] software modules (as
of August 20, 2016) to thePython Package Index (PyPI), the official repository of third-party
libraries for Python.
The major academic conference on Python is named PyCon. There are special mentoring
programmes like the Pyladies.
Naming[edit]
Python's name is derived from the television series Monty Python's Flying Circus,[100] and it is
common to use Monty Python references in example code.[101] For example, the metasyntactic
variables often used in Python literature are spam andeggs, instead of the traditional foo and
bar.[101][102] Also, the official Python documentation often contains various obscure Monty
Python references.
The prefix Py- is used to show that something is related to Python. Examples of the use of this
prefix in names of Python applications or libraries include Pygame, a binding of SDL to Python
(commonly used to create games); PyS60, an implementation for the Symbian S60 operating
system; PyQt and PyGTK, which bind Qt and GTK, respectively, to Python; and PyPy, a Python
implementation originally written in Python.
Uses[edit]
Main article: List of Python software
Since 2003, Python has consistently ranked in the top ten most popular programming languages
as measured by theTIOBE Programming Community Index. As of August 2016, it is the fifth
most popular language.[103] It was ranked as Programming Language of the Year for the year
2007 and 2010.[24] It is the third most popular language whosegrammatical syntax is not
predominantly based on C, e.g. C++, Objective-C (note, C# and Java only have partial syntactic
similarity to C, such as the use of curly braces, and are closer in similarity to each other than C).
An empirical study found scripting languages (such as Python) more productive than
conventional languages (such as C and Java) for a programming problem involving string
manipulation and search in a dictionary. Memory consumption was often "better than Java and
not much worse than C or C++".[104]
Large organizations that make use of Python include Google,[105] Yahoo!,[106] CERN,[107]
NASA,[108] and some smaller ones like ILM,[109] and ITA.[110] The social news networking
site, Reddit, is written entirely in Python.
Python can serve as a scripting language for web applications, e.g., via mod_wsgi for the Apache
web server.[111] With Web Server Gateway Interface, a standard API has evolved to facilitate
these applications. Web frameworks like Django, Pylons,Pyramid, TurboGears, web2py,
Tornado, Flask, Bottle and Zope support developers in the design and maintenance of complex
applications. Pyjamas and IronPython can be used to develop the client-side of Ajax-based
applications.SQLAlchemy can be used as data mapper to a relational database. Twisted is a
framework to program communications between computers, and is used (for example) by
Dropbox.
Libraries like NumPy, SciPy and Matplotlib allow the effective use of Python in scientific
computing,[112][113] with specialized libraries such as BioPython and Astropy providing
domain-specific functionality. Sage is a mathematical software with a "notebook"
programmable in Python: its library covers many aspects of mathematics, including algebra,
combinatorics,numerical mathematics, number theory, and calculus.
Python has been successfully embedded in many software products as a scripting language,
including in finite element method software such as Abaqus, 3D parametric modeler like
FreeCAD, 3D animation packages such as 3ds Max, Blender,Cinema 4D, Lightwave, Houdini,
Maya, modo, MotionBuilder, Softimage, the visual effects compositor Nuke, 2D imaging
programs like GIMP,[114] Inkscape, Scribus and Paint Shop Pro,[115] and musical notation
program or scorewriter capella.GNU Debugger uses Python as a pretty printer to show complex
structures such as C++ containers. Esri promotes Python as the best choice for writing scripts in
ArcGIS.[116] It has also been used in several video games,[117][118] and has been adopted as
first of the three available programming languages in Google App Engine, the other two being
Java and Go.[119]
Python has been used in artificial intelligence tasks.[120][121][122][123] As a scripting
language with module architecture, simple syntax and rich text processing tools, Python is often
used for natural language processing tasks.[124]
Many operating systems include Python as a standard component; the language ships with most
Linux distributions,AmigaOS 4, FreeBSD, NetBSD, OpenBSD and OS X, and can be used from
the terminal. Many Linux distributions use installers written in Python: Ubuntu uses the Ubiquity
installer, while Red Hat Linux and Fedora use the Anaconda installer.Gentoo Linux uses Python
in its package management system, Portage.
Python has also seen extensive use in the information security industry, including in exploit
development.[125][126]
Most of the Sugar software for the One Laptop per Child XO, now developed at Sugar Labs, is
written in Python.[127]
The Raspberry Pi single-board computer project has adopted Python as its main user-
programming language.
LibreOffice includes Python and intends to replace Java with Python. Python Scripting Provider
is a core feature[128] since Version 4.0 from 7 February 2013.
Languages influenced by Python[edit]
Python's design and philosophy have influenced several programming languages, including:
Python's development practices have also been emulated by other languages. The practice of
requiring a document describing the rationale for, and issues surrounding, a change to the
language (in Python's case, a PEP) is also used inTcl[138] and Erlang[139] because of Python's
influence.

More Related Content

Similar to The main Python implementation, named CPython, is written in C meeti.pdf

Python quick guide1
Python quick guide1Python quick guide1
Python quick guide1
Kanchilug
 
Python Programming Unit1_Aditya College of Engg & Tech
Python Programming Unit1_Aditya College of Engg & TechPython Programming Unit1_Aditya College of Engg & Tech
Python Programming Unit1_Aditya College of Engg & Tech
Ramanamurthy Banda
 

Similar to The main Python implementation, named CPython, is written in C meeti.pdf (20)

Python quick guide1
Python quick guide1Python quick guide1
Python quick guide1
 
Python Tutorial | Python Programming Language
Python Tutorial | Python Programming LanguagePython Tutorial | Python Programming Language
Python Tutorial | Python Programming Language
 
2018 20 best id es for python programming
2018 20 best id es for python programming2018 20 best id es for python programming
2018 20 best id es for python programming
 
20 best ide's for python programming in 2018
 20 best ide's for python programming in 2018 20 best ide's for python programming in 2018
20 best ide's for python programming in 2018
 
Python Class 1
Python Class 1Python Class 1
Python Class 1
 
Introduction python
Introduction pythonIntroduction python
Introduction python
 
Python Online From EasyLearning Guru
Python Online From EasyLearning GuruPython Online From EasyLearning Guru
Python Online From EasyLearning Guru
 
Introduction of python programming
Introduction of python programmingIntroduction of python programming
Introduction of python programming
 
Introduction to python for Beginners
Introduction to python for Beginners Introduction to python for Beginners
Introduction to python for Beginners
 
Simple calulator using GUI tkinter.pptx
Simple calulator using GUI tkinter.pptxSimple calulator using GUI tkinter.pptx
Simple calulator using GUI tkinter.pptx
 
Python games
Python gamesPython games
Python games
 
Module1-Chapter1_ppt.pptx
Module1-Chapter1_ppt.pptxModule1-Chapter1_ppt.pptx
Module1-Chapter1_ppt.pptx
 
intro.pptx (1).pdf
intro.pptx (1).pdfintro.pptx (1).pdf
intro.pptx (1).pdf
 
introduction to Python (for beginners)
introduction to Python (for beginners)introduction to Python (for beginners)
introduction to Python (for beginners)
 
Python Programming Unit1_Aditya College of Engg & Tech
Python Programming Unit1_Aditya College of Engg & TechPython Programming Unit1_Aditya College of Engg & Tech
Python Programming Unit1_Aditya College of Engg & Tech
 
Introduction To Python
Introduction To PythonIntroduction To Python
Introduction To Python
 
Final presentation on python
Final presentation on pythonFinal presentation on python
Final presentation on python
 
Python tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academyPython tutorial for beginners - Tib academy
Python tutorial for beginners - Tib academy
 
ppt summer training ug.pptx
ppt summer training ug.pptxppt summer training ug.pptx
ppt summer training ug.pptx
 
Summer Training Project.pdf
Summer Training Project.pdfSummer Training Project.pdf
Summer Training Project.pdf
 

More from anudamobileshopee

1) Entity is a thing in the real world with an independent existence.pdf
1) Entity is a thing in the real world with an independent existence.pdf1) Entity is a thing in the real world with an independent existence.pdf
1) Entity is a thing in the real world with an independent existence.pdf
anudamobileshopee
 
1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf
1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf
1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf
anudamobileshopee
 
The care business traditionally has generated massive amounts of inf.pdf
The care business traditionally has generated massive amounts of inf.pdfThe care business traditionally has generated massive amounts of inf.pdf
The care business traditionally has generated massive amounts of inf.pdf
anudamobileshopee
 
The 3 main important things required for migration or transition of .pdf
The 3 main important things required for migration or transition of .pdfThe 3 main important things required for migration or transition of .pdf
The 3 main important things required for migration or transition of .pdf
anudamobileshopee
 
Ques-1AnswerThinking of a mumps infection how do the symptoms .pdf
Ques-1AnswerThinking of a mumps infection how do the symptoms .pdfQues-1AnswerThinking of a mumps infection how do the symptoms .pdf
Ques-1AnswerThinking of a mumps infection how do the symptoms .pdf
anudamobileshopee
 
What were looking for here are salts in which the anion will not a.pdf
  What were looking for here are salts in which the anion will not a.pdf  What were looking for here are salts in which the anion will not a.pdf
What were looking for here are salts in which the anion will not a.pdf
anudamobileshopee
 
Step-1 Calculation of Avilable assets and liabilities Cash 750.pdf
    Step-1 Calculation of Avilable assets and liabilities   Cash 750.pdf    Step-1 Calculation of Avilable assets and liabilities   Cash 750.pdf
Step-1 Calculation of Avilable assets and liabilities Cash 750.pdf
anudamobileshopee
 

More from anudamobileshopee (20)

1) Entity is a thing in the real world with an independent existence.pdf
1) Entity is a thing in the real world with an independent existence.pdf1) Entity is a thing in the real world with an independent existence.pdf
1) Entity is a thing in the real world with an independent existence.pdf
 
1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf
1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf
1) Photosynthesis by acquatic plants, algae, seaweed that occurs bel.pdf
 
the order of strength of acids is HIO HIO2 HI.pdf
                     the order of strength of acids is HIO  HIO2  HI.pdf                     the order of strength of acids is HIO  HIO2  HI.pdf
the order of strength of acids is HIO HIO2 HI.pdf
 
The answer above is incorrect. The back of the bo.pdf
                     The answer above is incorrect. The back of the bo.pdf                     The answer above is incorrect. The back of the bo.pdf
The answer above is incorrect. The back of the bo.pdf
 
Manganese chloride Sulfur dichloride di- is .pdf
                     Manganese chloride Sulfur dichloride di- is .pdf                     Manganese chloride Sulfur dichloride di- is .pdf
Manganese chloride Sulfur dichloride di- is .pdf
 
When more solvent is added to top, air bubbles can form and channels.pdf
When more solvent is added to top, air bubbles can form and channels.pdfWhen more solvent is added to top, air bubbles can form and channels.pdf
When more solvent is added to top, air bubbles can form and channels.pdf
 
The care business traditionally has generated massive amounts of inf.pdf
The care business traditionally has generated massive amounts of inf.pdfThe care business traditionally has generated massive amounts of inf.pdf
The care business traditionally has generated massive amounts of inf.pdf
 
The 3 main important things required for migration or transition of .pdf
The 3 main important things required for migration or transition of .pdfThe 3 main important things required for migration or transition of .pdf
The 3 main important things required for migration or transition of .pdf
 
Solution public class Figure2 { public static void main(Str.pdf
Solution public class Figure2 { public static void main(Str.pdfSolution public class Figure2 { public static void main(Str.pdf
Solution public class Figure2 { public static void main(Str.pdf
 
Ques-1AnswerThinking of a mumps infection how do the symptoms .pdf
Ques-1AnswerThinking of a mumps infection how do the symptoms .pdfQues-1AnswerThinking of a mumps infection how do the symptoms .pdf
Ques-1AnswerThinking of a mumps infection how do the symptoms .pdf
 
POCl3Phosphorus chloride oxideSolutionPOCl3Phosphorus .pdf
POCl3Phosphorus chloride oxideSolutionPOCl3Phosphorus .pdfPOCl3Phosphorus chloride oxideSolutionPOCl3Phosphorus .pdf
POCl3Phosphorus chloride oxideSolutionPOCl3Phosphorus .pdf
 
Option 4 is correctSince Si2 is a molecule.Its bonding is   Si -.pdf
Option 4 is correctSince Si2 is a molecule.Its bonding is   Si -.pdfOption 4 is correctSince Si2 is a molecule.Its bonding is   Si -.pdf
Option 4 is correctSince Si2 is a molecule.Its bonding is   Si -.pdf
 
m=1Solutionm=1.pdf
m=1Solutionm=1.pdfm=1Solutionm=1.pdf
m=1Solutionm=1.pdf
 
What were looking for here are salts in which the anion will not a.pdf
  What were looking for here are salts in which the anion will not a.pdf  What were looking for here are salts in which the anion will not a.pdf
What were looking for here are salts in which the anion will not a.pdf
 
Step-1 Calculation of Avilable assets and liabilities Cash 750.pdf
    Step-1 Calculation of Avilable assets and liabilities   Cash 750.pdf    Step-1 Calculation of Avilable assets and liabilities   Cash 750.pdf
Step-1 Calculation of Avilable assets and liabilities Cash 750.pdf
 
In repressive operon if RNA polymerase cannot bind to the promoter, .pdf
In repressive operon if RNA polymerase cannot bind to the promoter, .pdfIn repressive operon if RNA polymerase cannot bind to the promoter, .pdf
In repressive operon if RNA polymerase cannot bind to the promoter, .pdf
 
Here the required number of ways is 128SolutionHere the requir.pdf
Here the required number of ways is 128SolutionHere the requir.pdfHere the required number of ways is 128SolutionHere the requir.pdf
Here the required number of ways is 128SolutionHere the requir.pdf
 
From the incorrectpicture shown, simply move the ethyl group inbetwe.pdf
From the incorrectpicture shown, simply move the ethyl group inbetwe.pdfFrom the incorrectpicture shown, simply move the ethyl group inbetwe.pdf
From the incorrectpicture shown, simply move the ethyl group inbetwe.pdf
 
All of the aboveSolutionAll of the above.pdf
All of the aboveSolutionAll of the above.pdfAll of the aboveSolutionAll of the above.pdf
All of the aboveSolutionAll of the above.pdf
 
A. The ATH command is the Hayes-compatible command to hangup an ex.pdf
A. The ATH command is the Hayes-compatible command to hangup an ex.pdfA. The ATH command is the Hayes-compatible command to hangup an ex.pdf
A. The ATH command is the Hayes-compatible command to hangup an ex.pdf
 

Recently uploaded

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
SoniaTolstoy
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Recently uploaded (20)

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 

The main Python implementation, named CPython, is written in C meeti.pdf

  • 1. The main Python implementation, named CPython, is written in C meeting the C89 standard.[82] It compiles Python programs into intermediate bytecode,[83] which is executed by the virtual machine.[84] CPython is distributed with a large standard library written in a mixture of C and Python. It is available in versions for many platforms, including Windows and most modern Unix-like systems. CPython was intended from almost its very conception to be cross- platform.[85] PyPy is a fast, compliant[86] interpreter of Python 2.7 and 3.2. Its just-in-time compiler brings a significant speed improvement over CPython.[87] A version taking advantage of multi-core processors using software transactional memory is being created.[88] Stackless Python is a significant fork of CPython that implements microthreads; it does not use the C memory stack, thus allowing massively concurrent programs. PyPy also has a stackless version.[89] MicroPython is a lean, fast Python 3 variant that is optimised to run on microcontrollers. Other just-in-time compilers have been developed in the past, but are now unsupported: In 2005, Nokia released a Python interpreter for the Series 60 mobile phones named PyS60. It includes many of the modules from the CPython implementations and some added modules to integrate with the Symbian operating system. This project has been kept up to date to run on all variants of the S60 platform and there are several third party modules available. The Nokia N900 also supports Python with GTK widget libraries, with the feature that programs can be both written and run on the target device.[91] There are several compilers to high-level object languages, with either unrestricted Python, a restricted subset of Python, or a language similar to Python as the source language: A performance comparison of various Python implementations on a non-numerical (combinatorial) workload was presented at EuroSciPy '13.[92] Development[edit] Python's development is conducted largely through the Python Enhancement Proposal (PEP) process. The PEP process is the primary mechanism for proposing major new features, for collecting community input on an issue, and for documenting the design decisions that have gone into Python.[93] Outstanding PEPs are reviewed and commented upon by the Python community and by Van Rossum, the Python project's benevolent dictator for life.[93] Enhancement of the language goes along with development of the CPython reference implementation. The mailing list python-dev is the primary forum for discussion about the language's development; specific issues are discussed in theRoundup bug tracker maintained at python.org.[94] Development takes place on a self-hosted source code repository running Mercurial.[95]
  • 2. CPython's public releases come in three types, distinguished by which part of the version number is incremented: Many alpha, beta, and release-candidates are also released as previews, and for testing before final releases. Although there is a rough schedule for each release, this is often pushed back if the code is not ready. The development team monitors the state of the code by running the large unit test suite during development, and using the BuildBot continuous integration system.[98] The community of Python developers has also contributed over 86,000[99] software modules (as of August 20, 2016) to thePython Package Index (PyPI), the official repository of third-party libraries for Python. The major academic conference on Python is named PyCon. There are special mentoring programmes like the Pyladies. Naming[edit] Python's name is derived from the television series Monty Python's Flying Circus,[100] and it is common to use Monty Python references in example code.[101] For example, the metasyntactic variables often used in Python literature are spam andeggs, instead of the traditional foo and bar.[101][102] Also, the official Python documentation often contains various obscure Monty Python references. The prefix Py- is used to show that something is related to Python. Examples of the use of this prefix in names of Python applications or libraries include Pygame, a binding of SDL to Python (commonly used to create games); PyS60, an implementation for the Symbian S60 operating system; PyQt and PyGTK, which bind Qt and GTK, respectively, to Python; and PyPy, a Python implementation originally written in Python. Uses[edit] Main article: List of Python software Since 2003, Python has consistently ranked in the top ten most popular programming languages as measured by theTIOBE Programming Community Index. As of August 2016, it is the fifth most popular language.[103] It was ranked as Programming Language of the Year for the year 2007 and 2010.[24] It is the third most popular language whosegrammatical syntax is not predominantly based on C, e.g. C++, Objective-C (note, C# and Java only have partial syntactic similarity to C, such as the use of curly braces, and are closer in similarity to each other than C). An empirical study found scripting languages (such as Python) more productive than conventional languages (such as C and Java) for a programming problem involving string manipulation and search in a dictionary. Memory consumption was often "better than Java and not much worse than C or C++".[104] Large organizations that make use of Python include Google,[105] Yahoo!,[106] CERN,[107] NASA,[108] and some smaller ones like ILM,[109] and ITA.[110] The social news networking
  • 3. site, Reddit, is written entirely in Python. Python can serve as a scripting language for web applications, e.g., via mod_wsgi for the Apache web server.[111] With Web Server Gateway Interface, a standard API has evolved to facilitate these applications. Web frameworks like Django, Pylons,Pyramid, TurboGears, web2py, Tornado, Flask, Bottle and Zope support developers in the design and maintenance of complex applications. Pyjamas and IronPython can be used to develop the client-side of Ajax-based applications.SQLAlchemy can be used as data mapper to a relational database. Twisted is a framework to program communications between computers, and is used (for example) by Dropbox. Libraries like NumPy, SciPy and Matplotlib allow the effective use of Python in scientific computing,[112][113] with specialized libraries such as BioPython and Astropy providing domain-specific functionality. Sage is a mathematical software with a "notebook" programmable in Python: its library covers many aspects of mathematics, including algebra, combinatorics,numerical mathematics, number theory, and calculus. Python has been successfully embedded in many software products as a scripting language, including in finite element method software such as Abaqus, 3D parametric modeler like FreeCAD, 3D animation packages such as 3ds Max, Blender,Cinema 4D, Lightwave, Houdini, Maya, modo, MotionBuilder, Softimage, the visual effects compositor Nuke, 2D imaging programs like GIMP,[114] Inkscape, Scribus and Paint Shop Pro,[115] and musical notation program or scorewriter capella.GNU Debugger uses Python as a pretty printer to show complex structures such as C++ containers. Esri promotes Python as the best choice for writing scripts in ArcGIS.[116] It has also been used in several video games,[117][118] and has been adopted as first of the three available programming languages in Google App Engine, the other two being Java and Go.[119] Python has been used in artificial intelligence tasks.[120][121][122][123] As a scripting language with module architecture, simple syntax and rich text processing tools, Python is often used for natural language processing tasks.[124] Many operating systems include Python as a standard component; the language ships with most Linux distributions,AmigaOS 4, FreeBSD, NetBSD, OpenBSD and OS X, and can be used from the terminal. Many Linux distributions use installers written in Python: Ubuntu uses the Ubiquity installer, while Red Hat Linux and Fedora use the Anaconda installer.Gentoo Linux uses Python in its package management system, Portage. Python has also seen extensive use in the information security industry, including in exploit development.[125][126] Most of the Sugar software for the One Laptop per Child XO, now developed at Sugar Labs, is written in Python.[127]
  • 4. The Raspberry Pi single-board computer project has adopted Python as its main user- programming language. LibreOffice includes Python and intends to replace Java with Python. Python Scripting Provider is a core feature[128] since Version 4.0 from 7 February 2013. Languages influenced by Python[edit] Python's design and philosophy have influenced several programming languages, including: Python's development practices have also been emulated by other languages. The practice of requiring a document describing the rationale for, and issues surrounding, a change to the language (in Python's case, a PEP) is also used inTcl[138] and Erlang[139] because of Python's influence. Solution The main Python implementation, named CPython, is written in C meeting the C89 standard.[82] It compiles Python programs into intermediate bytecode,[83] which is executed by the virtual machine.[84] CPython is distributed with a large standard library written in a mixture of C and Python. It is available in versions for many platforms, including Windows and most modern Unix-like systems. CPython was intended from almost its very conception to be cross- platform.[85] PyPy is a fast, compliant[86] interpreter of Python 2.7 and 3.2. Its just-in-time compiler brings a significant speed improvement over CPython.[87] A version taking advantage of multi-core processors using software transactional memory is being created.[88] Stackless Python is a significant fork of CPython that implements microthreads; it does not use the C memory stack, thus allowing massively concurrent programs. PyPy also has a stackless version.[89] MicroPython is a lean, fast Python 3 variant that is optimised to run on microcontrollers. Other just-in-time compilers have been developed in the past, but are now unsupported: In 2005, Nokia released a Python interpreter for the Series 60 mobile phones named PyS60. It includes many of the modules from the CPython implementations and some added modules to integrate with the Symbian operating system. This project has been kept up to date to run on all variants of the S60 platform and there are several third party modules available. The Nokia N900 also supports Python with GTK widget libraries, with the feature that programs can be both written and run on the target device.[91] There are several compilers to high-level object languages, with either unrestricted Python, a restricted subset of Python, or a language similar to Python as the source language: A performance comparison of various Python implementations on a non-numerical
  • 5. (combinatorial) workload was presented at EuroSciPy '13.[92] Development[edit] Python's development is conducted largely through the Python Enhancement Proposal (PEP) process. The PEP process is the primary mechanism for proposing major new features, for collecting community input on an issue, and for documenting the design decisions that have gone into Python.[93] Outstanding PEPs are reviewed and commented upon by the Python community and by Van Rossum, the Python project's benevolent dictator for life.[93] Enhancement of the language goes along with development of the CPython reference implementation. The mailing list python-dev is the primary forum for discussion about the language's development; specific issues are discussed in theRoundup bug tracker maintained at python.org.[94] Development takes place on a self-hosted source code repository running Mercurial.[95] CPython's public releases come in three types, distinguished by which part of the version number is incremented: Many alpha, beta, and release-candidates are also released as previews, and for testing before final releases. Although there is a rough schedule for each release, this is often pushed back if the code is not ready. The development team monitors the state of the code by running the large unit test suite during development, and using the BuildBot continuous integration system.[98] The community of Python developers has also contributed over 86,000[99] software modules (as of August 20, 2016) to thePython Package Index (PyPI), the official repository of third-party libraries for Python. The major academic conference on Python is named PyCon. There are special mentoring programmes like the Pyladies. Naming[edit] Python's name is derived from the television series Monty Python's Flying Circus,[100] and it is common to use Monty Python references in example code.[101] For example, the metasyntactic variables often used in Python literature are spam andeggs, instead of the traditional foo and bar.[101][102] Also, the official Python documentation often contains various obscure Monty Python references. The prefix Py- is used to show that something is related to Python. Examples of the use of this prefix in names of Python applications or libraries include Pygame, a binding of SDL to Python (commonly used to create games); PyS60, an implementation for the Symbian S60 operating system; PyQt and PyGTK, which bind Qt and GTK, respectively, to Python; and PyPy, a Python implementation originally written in Python. Uses[edit] Main article: List of Python software
  • 6. Since 2003, Python has consistently ranked in the top ten most popular programming languages as measured by theTIOBE Programming Community Index. As of August 2016, it is the fifth most popular language.[103] It was ranked as Programming Language of the Year for the year 2007 and 2010.[24] It is the third most popular language whosegrammatical syntax is not predominantly based on C, e.g. C++, Objective-C (note, C# and Java only have partial syntactic similarity to C, such as the use of curly braces, and are closer in similarity to each other than C). An empirical study found scripting languages (such as Python) more productive than conventional languages (such as C and Java) for a programming problem involving string manipulation and search in a dictionary. Memory consumption was often "better than Java and not much worse than C or C++".[104] Large organizations that make use of Python include Google,[105] Yahoo!,[106] CERN,[107] NASA,[108] and some smaller ones like ILM,[109] and ITA.[110] The social news networking site, Reddit, is written entirely in Python. Python can serve as a scripting language for web applications, e.g., via mod_wsgi for the Apache web server.[111] With Web Server Gateway Interface, a standard API has evolved to facilitate these applications. Web frameworks like Django, Pylons,Pyramid, TurboGears, web2py, Tornado, Flask, Bottle and Zope support developers in the design and maintenance of complex applications. Pyjamas and IronPython can be used to develop the client-side of Ajax-based applications.SQLAlchemy can be used as data mapper to a relational database. Twisted is a framework to program communications between computers, and is used (for example) by Dropbox. Libraries like NumPy, SciPy and Matplotlib allow the effective use of Python in scientific computing,[112][113] with specialized libraries such as BioPython and Astropy providing domain-specific functionality. Sage is a mathematical software with a "notebook" programmable in Python: its library covers many aspects of mathematics, including algebra, combinatorics,numerical mathematics, number theory, and calculus. Python has been successfully embedded in many software products as a scripting language, including in finite element method software such as Abaqus, 3D parametric modeler like FreeCAD, 3D animation packages such as 3ds Max, Blender,Cinema 4D, Lightwave, Houdini, Maya, modo, MotionBuilder, Softimage, the visual effects compositor Nuke, 2D imaging programs like GIMP,[114] Inkscape, Scribus and Paint Shop Pro,[115] and musical notation program or scorewriter capella.GNU Debugger uses Python as a pretty printer to show complex structures such as C++ containers. Esri promotes Python as the best choice for writing scripts in ArcGIS.[116] It has also been used in several video games,[117][118] and has been adopted as first of the three available programming languages in Google App Engine, the other two being Java and Go.[119]
  • 7. Python has been used in artificial intelligence tasks.[120][121][122][123] As a scripting language with module architecture, simple syntax and rich text processing tools, Python is often used for natural language processing tasks.[124] Many operating systems include Python as a standard component; the language ships with most Linux distributions,AmigaOS 4, FreeBSD, NetBSD, OpenBSD and OS X, and can be used from the terminal. Many Linux distributions use installers written in Python: Ubuntu uses the Ubiquity installer, while Red Hat Linux and Fedora use the Anaconda installer.Gentoo Linux uses Python in its package management system, Portage. Python has also seen extensive use in the information security industry, including in exploit development.[125][126] Most of the Sugar software for the One Laptop per Child XO, now developed at Sugar Labs, is written in Python.[127] The Raspberry Pi single-board computer project has adopted Python as its main user- programming language. LibreOffice includes Python and intends to replace Java with Python. Python Scripting Provider is a core feature[128] since Version 4.0 from 7 February 2013. Languages influenced by Python[edit] Python's design and philosophy have influenced several programming languages, including: Python's development practices have also been emulated by other languages. The practice of requiring a document describing the rationale for, and issues surrounding, a change to the language (in Python's case, a PEP) is also used inTcl[138] and Erlang[139] because of Python's influence.