8000 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
Prev Previous commit
Changed the wording to be more condensed.
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
  • Loading branch information
TommyUnreal and hauntsaninja authored Jul 23, 2023
commit dbbf5949f9948e19e23f8229adf693a9ca9751bb
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 similarly to how you perform
arithmetic operations in mathematics; parentheses (``()``) can be used for grouping.
operators ``+``, ``-``, ``*`` and ``/`` can be used to perform
arithmetic; parentheses (``()``) can be used for grouping.
For example::

>>> 2 + 2
Expand Down
0