Python (Chinese Wikipedia)

Analysis of information sources in references of the Wikipedia article "Python" in Chinese language version.

Last modified:

Ref.Un. Ref.Website
Global rank Chinese rank
1st place
1st place
4,399th place
1,922nd place
380th place
277th place
low place
low place
5,156th place
3,539th place
low place
7,442nd place
low place
low place
3,588th place
low place
low place
low place
low place
low place
low place
low place
low place
9,631st place
low place
low place
low place
low place
low place
low place
651st place
613th place
6th place
2nd place
low place
low place
low place
low place
low place
low place
8,963rd place
6,041st place
299th place
591st place
low place
low place
low place
low place
low place
low place
low place
low place
low place
low place
low place
low place
low place
7,089th place
low place
low place
low place
low place
low place
low place
low place
low place
low place
7,408th place
low place
low place
low place
low place
low place
low place
low place
low place

2ality.com (Global: low place; Chinese: low place)

amk.ca (Global: low place; Chinese: low place)

archive.org (Global: 6th place; Chinese: 2nd place)

artima.com (Global: low place; Chinese: low place)

bazel.build (Global: low place; Chinese: low place)

docs.bazel.build

cobra-language.com (Global: low place; Chinese: low place)

  • Esterbrook, Charles. Acknowledgements. cobra-language.com. Cobra Language. [2010-04-07]. (原始内容存档于2008-02-08). 

codehaus.org (Global: low place; Chinese: low place)

boo.codehaus.org

cwi.nl (Global: low place; Chinese: low place)

ir.cwi.nl

  • Guido van Rossum. Python Reference Manual - Version 1.2 (PDF). CWI Report CS-R9525. May 1995 [2023-03-04]. (原始内容存档 (PDF)于2023-03-05). Python is a simple, yet powerful, interpreted programming language that bridges the gap between C and shell programming, and is thus ideally suited for "throw-away英语Software_prototyping#Throwaway_prototyping programming" and rapid prototyping. Its syntax is put together from constructs borrowed from a variety of other languages; most prominent are influences from ABC, C, Modula-3 and Icon.
    The Python interpreter is easily extended with new functions and data types implemented in C. Python is also suitable as an extension language for highly customizable C applications such as editors or window managers.
     
  • Guido van Rossum. Extending and Embedding the Python Interpreter - Version 1.2 (PDF). CWI Report CS-R9527. May 1995 [2023-03-05]. (原始内容存档 (PDF)于2023-03-05). Python is an interpreted object oriented programming language. This document describes how to write modules in C or C++ to extend the Python interpreter with new modules. Those modules can define new functions but also new object types and their methods. The document also describes how to embed the Python interpreter in another application, for use as an extension language. Finally, it shows how to compile and link extension modules so that they can be loaded dynamically (at run time) into the interpreter, if the underlying operating system supports this feature. 
  • Guido van Rossum. Python Reference Manual - Version 1.2 (PDF). CWI Report CS-R9525. May 1995 [2023-03-04]. (原始内容存档 (PDF)于2023-03-05). The modulo operator always yields a result with the same sign as its second operand (or zero); …… The integer division and modulo operators are connected by the following identity: x == (x/y)*y + (x%y). 

deal.readthedocs.io (Global: low place; Chinese: low place)

edemaine.github.io (Global: low place; Chinese: low place)

  • CoffeeScript for Python Programmers. [2025-07-03]. (原始内容存档于2025-07-03). CoffeeScript is a programming language whose syntax is clearly designed to match much of Python (with additional inspirations from Perl, ECMAScript, Ruby, etc.). 

github.com (Global: 380th place; Chinese: 277th place)

godotengine.org (Global: low place; Chinese: 9,631st place)

docs.godotengine.org

golang.org (Global: low place; Chinese: low place)

gvanrossum.github.io (Global: low place; Chinese: low place)

infoworld.com (Global: 5,156th place; Chinese: 3,539th place)

jetbrains.com (Global: low place; Chinese: 7,089th place)

devecosystem-2025.jetbrains.com

julialang.org (Global: low place; Chinese: low place)

docs.julialang.org

linuxformat.co.uk (Global: low place; Chinese: low place)

linuxjournal.com (Global: 8,963rd place; Chinese: 6,041st place)

mail-archive.com (Global: low place; Chinese: 7,408th place)

medium.com (Global: 651st place; Chinese: 613th place)

might.net (Global: low place; Chinese: low place)

matt.might.net

nondot.org (Global: low place; Chinese: low place)

  • Lattner, Chris. Chris Lattner's Homepage. Chris Lattner. 2014-06-03 [2014-06-03]. (原始内容存档于2018-12-25). Of course, it also greatly benefited from the experiences hard-won by many other languages in the field, drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list. 

norvig.com (Global: low place; Chinese: low place)

numpy.org (Global: low place; Chinese: low place)

psu.edu (Global: 299th place; Chinese: 591st place)

citeseerx.ist.psu.edu

pydatalog.readthedocs.io (Global: low place; Chinese: low place)

pypi.org (Global: 3,588th place; Chinese: low place)

  • aspectlib. [2025-07-01]. (原始内容存档于2025-09-02). aspectlib is an aspect-oriented programming, monkey-patch and decorators library. It is useful when changing behavior in existing code is desired. It includes tools for debugging and testing: simple mock/record and a complete capture/replay framework. 
  • Python library for easily interacting with trained machine learning models https://pypi.org/project/gradio/页面存档备份,存于互联网档案馆

pypl.github.io (Global: low place; Chinese: low place)

python-history.blogspot.com (Global: low place; Chinese: low place)

python.org (Global: 4,399th place; Chinese: 1,922nd place)

docs.python.org

python.org

pythoninsider.blogspot.com (Global: low place; Chinese: low place)

raw.githubusercontent.com (Global: low place; Chinese: 7,442nd place)

  • GitHub repository of Python 0.9.1 source. [2023-02-25]. (原始内容存档于2023-03-05). 
    HISTORY. Python source distribution. Python Foundation. [2017-11-23]. (原始内容存档于2017-12-01). 
  • HISTORY. [2020-09-12]. (原始内容存档于2017-12-01). Lambda expressions are particularly useful in combination with map(), filter() and reduce(), described below. Thanks to Amrit Prem for submitting this code (as well as map(), filter(), reduce() and xrange())! 
  • Brian Kernighan, Dennis Ritchie. The C Programming Language, Second Edition (PDF). Prentice Hall. 1988 [2023-03-23]. (原始内容存档 (PDF)于2023-03-25). The relational operators group left-to-right, but this fact is not useful; a<b<c is parsed as (a<b)<c, and evaluates to either 0 or 1. 

speakingjs.com (Global: low place; Chinese: low place)

stackoverflow.co (Global: low place; Chinese: low place)

survey.stackoverflow.co

tiobe.com (Global: low place; Chinese: low place)

  • TIOBE Index. TIOBE - The Software Quality Company. [2021-10-06]. (原始内容存档于2020-06-14). 

web.archive.org (Global: 1st place; Chinese: 1st place)

weblogs.com (Global: low place; Chinese: low place)

radio.weblogs.com