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