# Python CodeRecipe|len()の使い方

HomeFunctions

# len()の例1

Return the number of items in a list:

    mylist = ["apple", "banana", "cherry"]x = len(mylist)

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

len()関数は オブジェクト内の項目数。 オブジェクトが文字列の場合、len()関数は 文字列内の文字数。

# len()の構文

    len(object)

# len()の引数

オブジェクト 必須。オブジェクト。シーケンスまたはコレクションでなければなりません

# len()の例2

Return the number of characters in a string:

    mylist = "Hello"x = len(mylist)

HomeFunctions