Topzle Topzle

Python (programming language)

Updated: Wikipedia source

Python (programming language)

Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation. Python is dynamically type-checked and garbage-collected. It supports multiple programming paradigms, including structured (particularly procedural), object-oriented and functional programming. Guido van Rossum began working on Python in the late 1980s as a successor to the ABC programming language. Python 3.0, released in 2008, was a major revision and not completely backward-compatible with earlier versions. Beginning with Python 3.5, capabilities and keywords for typing were added to the language, allowing optional static typing. As of 2025, the Python Software Foundation supports Python 3.10, 3.11, 3.12, 3.13, and 3.14, following the projects annual release cycle and five-year support policy. Earlier versions in the 3.x series have reached end-of-life and no longer receive security updates. Python has gained widespread use in the machine learning community. It is widely taught as an introductory programming language. Since 2003, Python has consistently ranked in the top ten of the most popular programming languages in the TIOBE Programming Community Index, which ranks based on searches in 24 platforms.

Infobox

Paradigm
Multi-paradigm: object-oriented, procedural (imperative), functional, structured, reflective
Designed by
Guido van Rossum
Developer
Python Software Foundation
First appeared
20 February 1991; 34 years ago (1991-02-20)
Stable release
3.14.2 / 5 December 2025; 6 days ago (5 December 2025)
Typing discipline
Duck, dynamic, strong; optional type annotations[a]
OS
Cross-platform including 32-bit Windows 10 and e.g. for mobile; Android and iOS (both 64-bit)[b]
License
Python Software Foundation License
Filename extensions
py, , , , ,
Website
python.org
Memory management
Garbage-collected

Tables

Summary of Python 3's built-in types · Syntax and semantics › Typing
bool
bool
Type
bool
Mutability
immutable
Description
Boolean value
Syntax examples
TrueFalse
bytearray
bytearray
Type
bytearray
Mutability
mutable
Description
Sequence of bytes
Syntax examples
bytearray(b'Some ASCII')bytearray(b"Some ASCII")bytearray([119, 105, 107, 105])
bytes
bytes
Type
bytes
Mutability
immutable
Description
Sequence of bytes
Syntax examples
b'Some ASCII'b"Some ASCII"bytes([119, 105, 107, 105])
complex
complex
Type
complex
Mutability
immutable
Description
Complex number with real and imaginary parts
Syntax examples
3+2.7j3 + 2.7j5j
dict
dict
Type
dict
Mutability
mutable
Description
Associative array (or dictionary) of key and value pairs; can contain mixed types (keys and values); keys must be a hashable type
Syntax examples
{'key1': 1
types.EllipsisType
types.EllipsisType
Type
types.EllipsisType
Mutability
immutable
Description
An ellipsis placeholder to be used as an index in NumPy arrays
Syntax examples
Ellipsis
float
float
Type
float
Mutability
immutable
Description
Double-precision floating-point number. The precision is machine-dependent, but in practice it is generally implemented as a 64-bit IEEE 754 number with 53 bits of precision.
Syntax examples
1.33333
frozenset
frozenset
Type
frozenset
Mutability
immutable
Description
Unordered set, contains no duplicates; can contain mixed types, if hashable
Syntax examples
frozenset({4.0, 'string', True}) frozenset()
int
int
Type
int
Mutability
immutable
Description
Integer of unlimited magnitude
Syntax examples
42
list
list
Type
list
Mutability
mutable
Description
List, can contain mixed types
Syntax examples
[4.0, 'string', True][]
types.NoneType
types.NoneType
Type
types.NoneType
Mutability
immutable
Description
An object representing the absence of a value, often called null in other languages
Syntax examples
None
types.NotImplementedType
types.NotImplementedType
Type
types.NotImplementedType
Mutability
immutable
Description
A placeholder that can be returned from overloaded operators to indicate unsupported operand types.
Syntax examples
NotImplemented
range
range
Type
range
Mutability
immutable
Description
An immutable sequence of numbers, commonly used for iterating a specific number of times in for loops
Syntax examples
range(−1, 10)range(10, −5, −2)
set
set
Type
set
Mutability
mutable
Description
Unordered set, contains no duplicates; can contain mixed types, if hashable
Syntax examples
{4.0, 'string', True}set()
str
str
Type
str
Mutability
immutable
Description
A character string: sequence of Unicode codepoints
Syntax examples
'Wikipedia'"Wikipedia""""Spanning multiple lines"""
tuple
tuple
Type
tuple
Mutability
immutable
Description
Tuple, can contain mixed types
Syntax examples
(4.0, 'string', True)('single element',)()
Type
Mutability
Description
Syntax examples
bool
immutable
Boolean value
TrueFalse
bytearray
mutable
Sequence of bytes
bytearray(b'Some ASCII')bytearray(b"Some ASCII")bytearray([119, 105, 107, 105])
bytes
immutable
Sequence of bytes
b'Some ASCII'b"Some ASCII"bytes([119, 105, 107, 105])
complex
immutable
Complex number with real and imaginary parts
3+2.7j3 + 2.7j5j
dict
mutable
Associative array (or dictionary) of key and value pairs; can contain mixed types (keys and values); keys must be a hashable type
{'key1': 1
types.EllipsisType
immutable
An ellipsis placeholder to be used as an index in NumPy arrays
Ellipsis
float
immutable
Double-precision floating-point number. The precision is machine-dependent, but in practice it is generally implemented as a 64-bit IEEE 754 number with 53 bits of precision.
1.33333
frozenset
immutable
Unordered set, contains no duplicates; can contain mixed types, if hashable
frozenset({4.0, 'string', True}) frozenset()
int
immutable
Integer of unlimited magnitude
42
list
mutable
List, can contain mixed types
string', True][]
types.NoneType
immutable
An object representing the absence of a value, often called null in other languages
None
types.NotImplementedType
immutable
A placeholder that can be returned from overloaded operators to indicate unsupported operand types.
NotImplemented
range
immutable
An immutable sequence of numbers, commonly used for iterating a specific number of times in for loops
range(−1, 10)range(10, −5, −2)
set
mutable
Unordered set, contains no duplicates; can contain mixed types, if hashable
string', True}set()
str
immutable
A character string: sequence of Unicode codepoints
'Wikipedia Wikipedia Spanning multiple lines "
tuple
immutable
Tuple, can contain mixed types
string', True)('single element',)()

References

  1. since 3.5, but those hints are ignored, except with unofficial tools
  2. Tier 1: 64-bit Linux, macOS; 64- and 32-bit Windows 8.1 and later with older Python versions Tier 2: E.g. 32-bit WebAsse
  3. del in Python does not behave the same way delete in languages such as C++ does, where such a word is used to call the d
  4. docs.python.org
    https://docs.python.org/3/faq/general.html#what-is-python
  5. "Python 0.9.1 part 01/21"
    https://www.tuhs.org/Usenet/alt.sources/1991-February/001749.html
  6. "Python 3.14.2 and 3.13.11 are now available!"
    https://pythoninsider.blogspot.com/2025/12/python-3142-and-31311-are-now-available.html
  7. Python Wiki
    https://wiki.python.org/moin/Why%20is%20Python%20a%20dynamic%20language%20and%20also%20a%20strongly%20typed%20language
  8. Python Enhancement Proposals (PEPs)
    https://www.python.org/dev/peps/pep-0483/
  9. Python Enhancement Proposals (PEPs)
    https://peps.python.org/pep-0011/
  10. Python Enhancement Proposals (PEPs)
    https://peps.python.org/pep-0738/
  11. Python.org
    https://www.python.org/download/other/
  12. Python 3.7.17 documentation
    https://docs.python.org/3.7/library/test.html?highlight=android#test.support.is_android
  13. Python 3.10.4 documentation
    https://docs.python.org/3.10/library/platform.html?highlight=android
  14. Python Enhancement Proposals (PEPs)
    https://www.python.org/dev/peps/pep-0441/
  15. bazel.build
    https://docs.bazel.build/versions/master/skylark/language.html
  16. General Python FAQ
    https://docs.python.org/faq/general.html#why-was-python-created-in-the-first-place
  17. archive.adaic.com
    https://archive.adaic.com/standards/83lrm/html/lrm-11-03.html#11.3
  18. amk.ca
    https://web.archive.org/web/20070501105422/http://www.amk.ca/python/writing/gvr-interview
  19. Python 3.7.17 documentation
    https://docs.python.org/3.7/library/itertools.html
  20. Proceedings of the NLUUG Najaarsconferentie (Dutch UNIX Users Group)
    https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.38.2023
  21. The Python Tutorial
    https://docs.python.org/tutorial/classes.html
  22. effbot.org
    http://effbot.org/zone/call-by-object.htm
  23. "The Python 2.3 Method Resolution Order"
    https://www.python.org/download/releases/2.3/mro/
  24. Python v2.7.2 documentation
    https://docs.python.org/howto/functional.html
  25. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0255/
  26. Python 3 documentation
    https://docs.python.org/3.2/tutorial/controlflow.html
  27. Python 3.10.6 documentation
    https://docs.python.org/3.10/library/re.html
  28. coffeescript.org
    https://coffeescript.org/
  29. 2ality.com
    https://www.2ality.com/2013/02/javascript-influences.html
  30. Speaking JavaScript
    https://speakingjs.com/es5/ch03.html
  31. Julia website
    https://julialang.org/blog/2012/02/why-we-created-julia
  32. InfoWorld
    https://www.infoworld.com/article/3695588/mojo-language-marries-python-and-mlir-for-ai-development.html
  33. ring-lang.net
    https://web.archive.org/web/20181225175312/http://ring-lang.sourceforge.net/doc1.6/introduction.html#ring-and-other-languages
  34. Practical JRuby on Rails Web 2.0 Projects: bringing Ruby on Rails to the Java platform
    https://archive.org/details/practicaljrubyon0000bini/page/3
  35. "Chris Lattner's Homepage"
    http://nondot.org/sabre/
  36. GitHub
    https://github.com/vlang/v/blob/master/doc/docs.md#introduction
  37. "A Python Book: Beginning Python, Advanced Python, and Python Exercises"
    https://web.archive.org/web/20120623165941/http://cutter.rexx.com/~dkuhlman/python_book_01.html
  38. Python Enhancement Proposals
    https://peps.python.org/pep-0484/
  39. mypy-lang.org
    https://mypy-lang.org/
  40. Stack Overflow
    https://survey.stackoverflow.co/2022/
  41. JetBrains
    https://www.jetbrains.com/lp/devecosystem-2020/
  42. "TIOBE Index"
    https://www.tiobe.com/tiobe-index/
  43. The Cyber Defense Review
    https://search.worldcat.org/issn/2474-2120
  44. The Journal of Technology Studies
    https://doi.org/10.21061%2Fjots.v43i2.a.3
  45. "TIOBE Index"
    https://www.tiobe.com/tiobe-index/
  46. Artima Developer
    http://www.artima.com/intv/pythonP.html
  47. The History of Python
    https://python-history.blogspot.com/2009/01/brief-timeline-of-python.html
  48. Python-Dev
    https://mail.python.org/pipermail/python-dev/2000-August/008881.html
  49. Linux Journal
    https://www.linuxjournal.com/content/guido-van-rossum-stepping-down-role-pythons-benevolent-dictator-life
  50. Python Enhancement Proposals (PEPs)
    https://peps.python.org/pep-8100/
  51. Python Enhancement Proposals (PEPs)
    https://peps.python.org/pep-0013/
  52. Python for kids: a playful introduction to programming
    https://archive.org/details/pythonforkidspla0000brig
  53. "What's New in Python 2.0"
    https://docs.python.org/whatsnew/2.0.html
  54. python.org
    https://legacy.python.org/dev/peps/pep-0373/
  55. Python Enhancement Proposals (PEPs)
    https://peps.python.org/pep-0466/
  56. Python.org
    https://www.python.org/doc/sunset-python-2/
  57. Python Enhancement Proposals (PEPs)
    https://peps.python.org/pep-0373/
  58. PyPy
    https://www.pypy.org/posts/2023/12/pypy-v7314-release.html
  59. Python Insider
    https://pythoninsider.blogspot.com/2020/04/python-2718-last-release-of-python-2.html
  60. Python Developer's Guide
    https://devguide.python.org/versions/
  61. "Python Metaclasses: Who? Why? When?"
    https://web.archive.org/web/20090530030205/http://www.python.org/community/pycon/dc2004/papers/24/metaclasses-pycon.pdf
  62. The Python Language Reference
    https://docs.python.org/3.0/reference/datamodel.html#special-method-names
  63. "PyDBC: method preconditions, method postconditions and class invariants for Python"
    http://www.nongnu.org/pydbc/
  64. "Contracts for Python"
    http://www.wayforward.net/pycontract/
  65. "PyDatalog"
    https://sites.google.com/site/pydatalog/
  66. Python.org
    https://www.python.org/doc/essays/omg-darpa-mcc-position/
  67. Docs.python.org
    https://docs.python.org/extending/extending.html#reference-counts
  68. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0289/
  69. "6.5 itertools – Functions creating iterators for efficient looping"
    https://docs.python.org/3/library/itertools.html
  70. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0020/
  71. Learning Python
    https://learning-python.com/python-changes-2014-plus.html
  72. Python.org
    https://discuss.python.org/t/confusion-regarding-a-rule-in-the-zen-of-python/15927
  73. Python simplified (pythonsimplified.com)
    https://pythonsimplified.com/the-most-controversial-python-walrus-operator/
  74. The Renegade Coder (therenegadecoder.com)
    https://therenegadecoder.com/code/the-controversy-behind-the-walrus-operator-in-python/
  75. "[Python-ideas] PEP 315: do-while"
    https://mail.python.org/pipermail/python-ideas/2013-June/021610.html
  76. Real Python (realpython.com)
    https://realpython.com/python-string-formatting/
  77. Python Cookbook, 2nd Edition
    http://shop.oreilly.com/product/9780596007973.do
  78. ebeab
    https://web.archive.org/web/20140130021902/http://ebeab.com/2014/01/21/python-culture/
  79. "Transpiling Python to Julia using PyJL"
    https://web.ist.utl.pt/antonio.menezes.leitao/ADA/documents/publications_docs/2022_TranspilingPythonToJuliaUsingPyJL.pdf
  80. General Python FAQ
    https://docs.python.org/3/faq/general.html#why-is-it-called-python
  81. "15 ways Python is a powerful force on the web"
    https://web.archive.org/web/20190511065650/http://insidetech.monster.com/training/articles/8114-15-ways-python-is-a-powerful-force-on-the-web
  82. docs.python.org
    https://docs.python.org/3/library/pprint.html
  83. docs.python-guide.org
    https://docs.python-guide.org/writing/style
  84. General Python FAQ
    https://docs.python.org/faq/general.html#is-python-a-good-language-for-beginning-programmers
  85. "Myths about indentation in Python"
    https://web.archive.org/web/20180218162410/http://www.secnetix.de/~olli/Python/block_indentation.hawk
  86. Introduction to Computation and Programming Using Python: With Application to Understanding Data
  87. Python Enhancement Proposals (PEPs)
    https://www.python.org/dev/peps/pep-0008/
  88. docs.python.org
    https://docs.python.org/3.11/tutorial/errors.html
  89. Python.org
    https://www.python.org/download/releases/2.5/highlights/
  90. "Tail Recursion Elimination"
    http://neopythonic.blogspot.be/2009/04/tail-recursion-elimination.html
  91. Artima forums
    http://www.artima.com/weblogs/viewpost.jsp?thread=147358
  92. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0342/
  93. "PEP 380"
    https://www.python.org/dev/peps/pep-0380/
  94. python.org
    https://docs.python.org
  95. python.org
    https://www.python.org/dev/peps/pep-0465/
  96. python.org
    https://www.python.org/downloads/release/python-351/
  97. "What's New in Python 3.8"
    https://docs.python.org/3.8/whatsnew/3.8.html
  98. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0308/
  99. python.org
    https://docs.python.org/3/library/stdtypes.html#tuple
  100. python.org
    https://docs.python.org/3/tutorial/datastructures.html#tuples-and-sequences
  101. python.org
    https://www.python.org/dev/peps/pep-0498/
  102. "The Python Language Reference, section 3.3. New-style and classic classes, for release 2.7.1"
    https://web.archive.org/web/20121026063834/http://docs.python.org/reference/datamodel.html#new-style-and-classic-classes
  103. peps.python.org
    https://peps.python.org/pep-0484/
  104. Python documentation
    https://docs.python.org/3/library/typing.html
  105. "mypy – Optional Static Typing for Python"
    http://mypy-lang.org/
  106. mypyc.readthedocs.io
    https://mypyc.readthedocs.io/en/latest/introduction.html
  107. docs.python.org
    https://docs.python.org/3.8/tutorial/floatingpoint.html#representation-error
  108. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0237/
  109. "Built-in Types"
    https://docs.python.org/3/library/stdtypes.html#typesseq-range
  110. python.org
    https://legacy.python.org/dev/peps/pep-0465/
  111. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0238/
  112. "Why Python's Integer Division Floors"
    https://python-history.blogspot.com/2010/08/why-pythons-integer-division-floors.html
  113. The Python standard library, release 3.2, §2: Built-in functions
    https://docs.python.org/py3k/library/functions.html#round
  114. The Python standard library, release 2.7, §2: Built-in functions
    https://docs.python.org/library/functions.html#round
  115. Python Essential Reference
    https://archive.org/details/pythonessentialr00beaz_036
  116. The C Programming Language
    https://archive.org/details/cprogramminglang00bria/page/206
  117. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0327/
  118. Python v2.6.9 documentation
    https://docs.python.org/2.6/whatsnew/2.6.html
  119. University of Washington Department of Statistics
    https://web.archive.org/web/20200531211840/https://www.stat.washington.edu/~hoytak/blog/whypython.html
  120. "An introduction to Python for scientific computing"
    https://engineering.ucsb.edu/~shell/che210d/python.pdf
  121. Oracle Technology Network
    http://www.oracle.com/technetwork/articles/piotrowski-pythoncore-084049.html
  122. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0333/
  123. PyPI
    https://pypi.org/
  124. Python documentation
    https://docs.python.org/3/glossary.html#term-interactive
  125. Python documentation
    https://docs.python.org/3/library/idle.html
  126. "IPython Documentation"
    https://ipython.readthedocs.io/en/stable/
  127. code.visualstudio.com
    https://code.visualstudio.com/docs/languages/python
  128. Jupyter.org
    https://jupyter.org
  129. WKU Physics 316
    http://physics.wku.edu/phys316/software/canopy/
  130. Enthought
    https://web.archive.org/web/20170715151703/https://www.enthought.com/products/canopy/
  131. peps.python.org
    https://peps.python.org/pep-0007/
  132. docs.python.org
    https://docs.python.org/3/extending/building.html
  133. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0007/
  134. "CPython byte code"
    https://docs.python.org/3/library/dis.html#python-bytecode-instructions
  135. "Python 2.5 internals"
    http://www.troeger.eu/teaching/pythonvm08.pdf
  136. docs.python.org
    https://docs.python.org/release/3.9.0/whatsnew/changelog.html#changelog
  137. Python.org
    https://www.python.org/downloads/release/python-391
  138. www.vmspython.org
    https://www.vmspython.org/doku.php?id=history
  139. "An Interview with Guido van Rossum"
    http://www.oreilly.com/pub/a/oreilly/frank/rossum_1099.html
  140. Proceedings of the 10th ACM SIGPLAN International Conference on Software Language Engineering
    https://doi.org/10.1145/3136014.3136031
  141. "What PyInstaller Does and How It Does It"
    https://pyinstaller.org/en/stable/operating-mode.html
  142. "PyPy compatibility"
    https://pypy.org/compat.html
  143. PyPy
    https://www.pypy.org/download.html
  144. "speed comparison between CPython and Pypy"
    https://speed.pypy.org/
  145. "Codon: Differences with Python"
    https://docs.exaloop.io/codon/general/differences
  146. The New Stack
    https://thenewstack.io/mit-created-compiler-speeds-up-python-code/
  147. LEGO Education
    https://education.lego.com/en-us/support/mindstorms-ev3/python-for-ev3
  148. InfoWorld
    https://www.infoworld.com/article/3587591/pyston-returns-from-the-dead-to-speed-python.html
  149. GitHub
    https://github.com/facebookincubator/cinder
  150. Yet Another Technology Blog
    https://rafaelaroca.wordpress.com/2021/08/07/snek-lang-feels-like-python-on-arduinos/
  151. CNX Software – Embedded Systems News
    https://www.cnx-software.com/2020/01/16/snekboard-controls-lego-power-functions-with-circuitpython-or-snek-programming-languages/
  152. pythonbytes.fm
    https://pythonbytes.fm/episodes/show/187/ready-to-find-out-if-youre-git-famous
  153. "The Snek Programming Language: A Python-inspired Embedded Computing Language"
    https://sneklang.org/doc/snek.pdf
  154. "Application-level Stackless features – PyPy 2.0.2 documentation"
    http://doc.pypy.org/en/latest/stackless.html
  155. Google Project Hosting
    https://code.google.com/p/unladen-swallow/wiki/ProjectPlan
  156. Stochastic Geometry
    http://www.stochasticgeometry.ie/2010/04/29/python-on-the-nokia-n900/
  157. brython.info
    https://brython.info/
  158. transcrypt.org
    https://www.transcrypt.org
  159. InfoQ
    https://www.infoq.com/articles/transcrypt-python-javascript-compiler/
  160. nuitka.net
    http://nuitka.net/
  161. Computational Science & Discovery
    https://doi.org/10.1088%2F1749-4680%2F8%2F1%2F014001
  162. "The Python → 11l → C++ transpiler"
    https://11l-lang.org/transpiler
  163. "google/grumpy"
    https://github.com/google/grumpy
  164. opensource.google
    https://opensource.google/projects/
  165. www.theregister.com
    https://www.theregister.com/2017/01/05/googles_grumpy_makes_python_go/
  166. ironpython.net
    https://ironpython.net/
  167. GitHub
    https://github.com/IronLanguages/ironpython3
  168. www.jython.org
    https://www.jython.org/jython-old-sites/archive/22/userfaq.html
  169. Performance of Python runtimes on a non-numeric scientific code
    https://arxiv.org/abs/1404.6388
  170. "The Computer Language Benchmarks Game"
    https://benchmarksgame-team.pages.debian.net/benchmarksgame/fastest/python.html
  171. realpython.com
    https://realpython.com/numpy-array-programming/
  172. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0001/
  173. python.org
    https://web.archive.org/web/20090601134342/http://www.python.org/dev/intro/
  174. "Moving Python's bugs to GitHub [LWN.net]"
    https://lwn.net/Articles/885854/
  175. devguide.python.org
    https://devguide.python.org/
  176. TechRepublic
    https://www.techrepublic.com/article/programming-languages-why-python-4-0-will-probably-never-arrive-according-to-its-creator/
  177. Python.org
    https://www.python.org/dev/peps/pep-0602/
  178. lwn.net
    https://lwn.net/Articles/802777/
  179. "[Python-Dev] Release Schedules (was Stability & change)"
    https://mail.python.org/pipermail/python-dev/2002-April/022739.html
  180. Python Enhancement Proposals
    https://www.python.org/dev/peps/pep-0006/
  181. Python Developer's Guide
    https://www.python.org/dev/buildbot/
  182. The Python Tutorial
    https://docs.python.org/tutorial/appetite.html
  183. Stack Overflow
    https://stackoverflow.com/questions/5033906/in-python-should-i-use-else-after-a-return-in-an-if-block
  184. Lutz 2013, p. 17.
  185. Python
    https://books.google.com/books?id=carqdIdfVlYC&pg=PR15
  186. Introducing Python
    http://archive.org/details/introducingpytho0000luba
  187. cobra-language.com
    https://web.archive.org/web/20080208141002/http://cobra-language.com/docs/acknowledgements/
  188. "Proposals: iterators and generators [ES4 Wiki]"
    https://web.archive.org/web/20071020082650/http://wiki.ecmascript.org/doku.php?id=proposals:iterators_and_generators
  189. TechCrunch
    https://techcrunch.com/2009/11/10/google-go-language/
  190. Julia website
    https://julialang.org/blog/2012/02/why-we-created-julia
  191. docs.modular.com
    https://docs.modular.com/mojo/why-mojo.html
  192. datasciencelearningcenter.substack.com
    https://datasciencelearningcenter.substack.com/p/what-is-mojo-programming-language
  193. gdscript.com
    https://gdscript.com/
Image
Source:
Tip: Wheel or +/− to zoom, drag to pan, Esc to close.