]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-107017: Analolgy to Pascal and C replaced. (GH-107025) (#107123)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 23 Jul 2023 13:59:05 +0000 (06:59 -0700)
committerGitHub <noreply@github.com>
Sun, 23 Jul 2023 13:59:05 +0000 (13:59 +0000)
Co-authored-by: TommyUnreal <45427816+TommyUnreal@users.noreply.github.com>
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Doc/tutorial/introduction.rst

index b7a89905e4f38cad5da40bd8087bd7cb2e70b2cf..e8b582dfe85d288ce98297d09d5efc4ced14fab0 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