Deep LearningPython

【Python】Python 変数

Python

Pythonのを変数を紹介します。

ターミナルでPythonのinteractive mode(対話モード)を起動します。

>>> x = 2        #初期化
>>> print(x) # xを出力
2
>>> x = 98    # 代入
>>> print(x)
98
>>> y = 2.31
>>> x * y
226.38
>>> type( x * y)
<class 'float'>
>>> 

#はコメントアウト