10000 gh-107017: Analolgy to Pascal and C replaced. by TommyUnreal · Pull Request #107025 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

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

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Analolgy to Pascal and C replaced.
Knowledge of arithmetic is more accessible than knowledge of other programming languages. An analogy is, therefore, more accessible.
  • Loading branch information
TommyUnreal committed Jul 22, 2023
commit f07a19c7f7627343b1683e53d7b92a7a00c643b0
4 changes: 2 additions & 2 deletions Doc/tutorial/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 ``/`` work similarly to how you perform
arithmetic operations in mathematics; parentheses (``()``) can be used for grouping.
For example::

>>> 2 + 2
Expand Down
0