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>type()データの型を調べることができます。</p>
</div>
>>> type(1)
<class 'int'>
>>> type(1.321)
<class 'float'>
>>> type("hello")
<class 'str'>
>>>
intは整数点
floatは浮動小数点
strは文字列型