# Python CodeRecipe|reversed()の使い方
# reversed()の例1
Reverse the sequence of a list, and print each item:
alph = ["a", "b", "c", "d"]ralph = reversed(alph)for x in ralph:
print(x)
# reversed()の定義及び使い方
reversed()関数は、反転したイテレータオブジェクトを返します。
# reversed()の構文
reversed(sequence)
# reversed()の引数
順序 必須。任意の反復可能なオブジェクト
Related Pages The iter() function returns an iterator object. The list.reverse() method reverses a List.