Chapter 2

 
1、Python runing sequence:
 [原创] Learning in Python:Chapter 2  How Python Runs Programs

[原创] Learning in Python:Chapter 2  How Python Runs Programs

[原创] Learning in Python:Chapter 2  How Python Runs Programs
 
2. Different Python implementation:
  •     CPython:     original , C/C++
  •     Jython:                        Java 
  •     IronPython:               .Net, C#
 
3. Execution Optimization Tools
  • The Psyco just-in-time compiler
  • The Shedskin C++ translator
4. Frozen Binaries
  • py2exe (windows)
  • PyInstaller (linux, windows)
  • freeze
5. Other Execution Options
  • Stackless Python:   easier to port to small stack architectures, provides efficient multiprocessing options, and fosters novel programming structures such as coroutines
  • Cython system: hybrid language combined C

相关文章:

  • 2021-06-01
  • 2021-10-30
  • 2021-12-26
  • 2022-12-23
  • 2021-10-15
  • 2021-06-23
  • 2021-06-09
猜你喜欢
  • 2021-11-21
  • 2021-06-16
  • 2021-06-04
  • 2021-06-11
  • 2022-12-23
  • 2022-12-23
  • 2021-08-06
相关资源
相似解决方案