-
Notifications
You must be signed in to change notification settings - Fork 22.7k
/
Copy pathindex.md
26 lines (20 loc) · 1.35 KB
/
index.md
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
---
title: Python
slug: Glossary/Python
page-type: glossary-definition
---
{{GlossarySidebar}}
**Python** is a high level general-purpose programming language. It uses a multi-paradigm approach, meaning it supports procedural, object-oriented, and some functional programming constructs.
It was created by Guido van Rossum as a successor to another language (called ABC) between 1985 and 1990, and is currently used on a large array of domains like web development, desktop applications, data science, DevOps, and automation/productivity.
Python is developed under an OSI-approved open source license, making it freely usable and distributable, even for commercial use. Python's license is administered by the [Python Software Foundation](https://www.python.org/psf-landing/).
## See also
- [Python](<https://en.wikipedia.org/wiki/Python_(programming_language)>) on Wikipedia
- [Official Python docs tutorials](https://docs.python.org/3/tutorial/index.html)
- [Tutorials Point Python tutorial](https://www.tutorialspoint.com/python/index.htm)
- [AlphaCodingSkills Python Tutorial](https://www.alphacodingskills.com/python/python-tutorial.php)
- [Django Web Framework (Python)](/en-US/docs/Learn_web_development/Extensions/Server-side/Django) on MDN
- Related glossary terms:
- {{Glossary("Java")}}
- {{Glossary("JavaScript")}}
- {{Glossary("PHP")}}
- {{Glossary("Ruby")}}