Pythonの変数を紹介します。
ターミナルでPythonのinteractive mode(対話モード)を起動します。
% python
Python 3.7.7 (default, Mar 10 2020, 15:43:33)
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
<div class="content">
<p>XやYなどを使って変数を定義することができます。</p>
<p>変数を利用して計算したあら変数に別の値を代入する事も可能です。</p>
</div>
>>> x = 2 #初期化
>>> print(x) # xを出力
2
>>> x = 10 #代入
>>> print(x)
10
>>> y = 3.16
>>> x * Y # Yを間違って入れた場合
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'Y' is not defined
>>> x * y
31.6
>>> type(x * y)
<class 'float'>
>>>
#コメントアウトしたらそれ以外の文字はPythonから無視されます。