Skip to content

Commit 3ab3475

Browse files
authored
bpo-24914: mention Python supports multiple paradigms in the FAQ (#20658)
1 parent 5edb832 commit 3ab3475

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Doc/faq/general.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ What is Python?
1717

1818
Python is an interpreted, interactive, object-oriented programming language. It
1919
incorporates modules, exceptions, dynamic typing, very high level dynamic data
20-
types, and classes. Python combines remarkable power with very clear syntax.
21-
It has interfaces to many system calls and libraries, as well as to various
22-
window systems, and is extensible in C or C++. It is also usable as an
23-
extension language for applications that need a programmable interface.
24-
Finally, Python is portable: it runs on many Unix variants, on the Mac, and on
25-
Windows 2000 and later.
20+
types, and classes. It supports multiple programming paradigms beyond
21+
object-oriented programming, such as procedural and functional programming.
22+
Python combines remarkable power with very clear syntax. It has interfaces to
23+
many system calls and libraries, as well as to various window systems, and is
24+
extensible in C or C++. It is also usable as an extension language for
25+
applications that need a programmable interface. Finally, Python is portable:
26+
it runs on many Unix variants including Linux and macOS, and on Windows.
2627

2728
To find out more, start with :ref:`tutorial-index`. The `Beginner's Guide to
2829
Python <https://wiki.python.org/moin/BeginnersGuide>`_ links to other

0 commit comments

Comments
 (0)