[Python-checkins] gh-107017: Analolgy to Pascal and C replaced. (#107025)

hugovk webhook-mailer at python.org
Sun Jul 23 08:07:27 EDT 2023


https://github.com/python/cpython/commit/e59da0c4f283b966ccb175fb94460f58211a9704
commit: e59da0c4f283b966ccb175fb94460f58211a9704
branch: main
author: TommyUnreal <45427816+TommyUnreal at users.noreply.github.com>
committer: hugovk <hugovk at users.noreply.github.com>
date: 2023-07-23T06:07:24-06:00
summary:

gh-107017: Analolgy to Pascal and C replaced. (#107025)

Co-authored-by: Shantanu <12621235+hauntsaninja at users.noreply.github.com>

files:
M Doc/tutorial/introduction.rst

diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index ebc2e9187534b..4b886f604aca2 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -52,8 +52,8 @@ Numbers
 
 The interpreter acts as a simple calculator: you can type an expression at it
 and it will write the value.  Expression syntax is straightforward: the
-operators ``+``, ``-``, ``*`` and ``/`` work just like in most other languages
-(for example, Pascal or C); parentheses (``()``) can be used for grouping.
+operators ``+``, ``-``, ``*`` and ``/`` can be used to perform
+arithmetic; parentheses (``()``) can be used for grouping.
 For example::
 
    >>> 2 + 2



More information about the Python-checkins mailing list