# Python CodeRecipe|iter()の使い方

HomeFunctions

# iter()の例1

Create an iterator object, and print the items:

    x = iter(["apple", "banana", "cherry"])print(next(x))print(next(x))
    print(next(x))

# iter()の定義及び使い方

iter()関数は次の値を返します。 イテレーター・オブジェクト。

# iter()の構文

    iter(object, sentinel)

# iter()の引数

オブジェクト 必須。反復可能なオブジェクト

歩哨 オプション。オブジェクトが呼び出し可能オブジェクトの場合、反復は停止します。 戻り値が標識と同じ場合

Related Pages The reversed() function returns a reversed iterator object.

HomeFunctions