Skip to content
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

Change "Constant" to "Constants" #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions en/constants/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ <h3>Python Reader</h3>
<h1>Constants</h1>
<hr/>

<p>Constant are really variables that represent quantities that <b>don’t change</b> while the program is running. Variables, on the other hand, often do change. Constants are written in a special way so that programmers know that they will not change. For example, consider this program which can tell you the number of seconds in a given number of minutes:</p>
<p>Constants are really variables that represent quantities that <b>don’t change</b> while the program is running. Variables, on the other hand, often do change. Constants are written in a special way so that programmers know that they will not change. For example, consider this program which can tell you the number of seconds in a given number of minutes:</p>

<pre class="language-python"><code>"""
File: constants.py
Expand Down Expand Up @@ -234,4 +234,4 @@ <h2>Definining Constants</h2>

</body>

</html>
</html>