【Pythonエラー】TypeError:’float’ object cannot be interpreted as an integer

Pythonのエラー文「TypeError:’float’ object cannot be interpreted as an integer」が出たときの解決方法についてまとめました。

【エラー】「TypeError:’float’ object cannot be interpreted as an integer」

以下のエラーは、型のエラーで「’float’オブジェクトは整数として受け取れません」という意味です。
つまり、「整数型しか受け取れない関数にそれ以外の型(このエラーだとfloat:小数)を渡すと。このエラーが返ってきます。

TypeError:'float' object cannot be interpreted as an integer

解決策はint関数などでfloat型をint型に変換してやります。

【Python超入門】使い方とサンプル集
Pythonの使い方について、基礎文法から応用例まで入門者向けに解説します。

コメント