]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-107017: Analolgy to Pascal and C replaced. (#107025)
authorTommyUnreal <45427816+TommyUnreal@users.noreply.github.com>
Sun, 23 Jul 2023 12:07:24 +0000 (14:07 +0200)
committerGitHub <noreply@github.com>
Sun, 23 Jul 2023 12:07:24 +0000 (06:07 -0600)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Doc/tutorial/introduction.rst

index ebc2e9187534b45707e9f7cc5e3cbed161984db5..4b886f604aca233a11bb544e0391020e91308682 100644 (file)
@@ -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