# Python CodeRecipe|tuple()の使い方
# tuple()の例1
Create a tuple containing fruit names:
x =
tuple(('apple', 'banana', 'cherry'))
# tuple()の定義及び使い方
tuple()関数は、タプル・オブジェクトを作成します。
注意:タプル内のアイテムは変更または削除できません。
セットの詳細については、 「Python Tuples」 の章を参照してください。
# tuple()の構文
tuple(iterable)
# tuple()の引数
反復可能な 必須。シーケンス、コレクション、またはイテレータオブジェクト