4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【python】for文エラー

Last updated at Posted at 2020-10-24

TypeError: 'int' object is not iterable
のエラーが生じたときの対処法

#for文の使い方
以下のように in の後には範囲を指定する。

for i in range(0, 4):
    print(i)
実行結果
0
1
2
3

上の例では in の後に0から3を指定している。

#エラーが出る使い方
以下のように in の後に数字のみを入れるとエラーが起きる。

for i in 4:
    print(i)
#TypeError: 'int' object is not iterable

以上の例は in の後に数字が入っているため、for文を何回したらよいかわからないというエラーが出ている。

4
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?