Python len() 関数: 文字列の長さを調べる方法
Python len() 関数
len() は Python の組み込み関数です。 len() を使用すると、指定された文字列、配列、リスト、タプル、辞書などの長さを取得できます。len 関数を使用すると、プログラムのパフォーマンスを最適化できます。 オブジェクトに格納されている要素の数は計算されないため、len は要素の数を提供するのに役立ちます。
構文
len(value)
Parameters
値: 長さを求める指定された値。
戻り値
整数値、つまり指定された文字列、配列、リスト、コレクションの長さを返します。
さまざまなタイプの戻り値:
文字列:
文字列内の文字数を返します。これには、句読点、スペース、およびあらゆる種類の特殊文字が含まれます。 ただし、Null 変数の len を使用するときは十分に注意する必要があります。
空の:
Empty は文字がゼロの XNUMX 番目のリターン呼び出しですが、常に None です。
コレクション:
len 組み込み関数は、コレクション内の要素の数を返します。
タイプエラー:
Len 関数は、渡される変数の型によって異なります。 非タイプには組み込みのサポートがありません。
辞書:
辞書の場合、各ペアは XNUMX 単位としてカウントされます。 ただし、値とキーは独立していません。
例 1: 指定された文字列の長さを調べるにはどうすればよいでしょうか?
# testing len() str1 = "Welcome to Guru99 Python Tutorials" print("The length of the string is :", len(str1))
出力:
The length of the string is : 35
Example 2: How to find the length of the list in python?
# to find the length of the list list1 = ["Tim","Charlie","Tiffany","Robert"] print("The length of the list is", len(list1))
出力:
The length of the list is 4
Example 3: How to find the length of a tuple in python
# to find the length of the tuple Tup = ('Jan','feb','march') print("The length of the tuple is", len(Tup))
出力:
The length of the tuple is 3
例4: 辞書の長さを調べる方法 Python?
# to find the length of the Dictionary Dict = {'Tim': 18,'Charlie':12,'Tiffany':22,'Robert':25} print("The length of the Dictionary is", len(Dict))
出力:
The length of the Dictionary is 4
Example 5: How to find the length of the array in python
# to find the length of the array arr1 = ['Tim','Charlie','Tiffany','Robert'] print("The length of the Array is", len(arr1))
出力:
The length of the Array is 4
まとめ
- len() は組み込みです Pythonの関数。 len() を使用すると、指定された文字列、配列、リスト、タプル、辞書などの長さを取得できます。
- 値: 長さを求める指定の値。
- 戻り値 a 整数値、つまり指定された文字列、配列、リスト、またはコレクションの長さを返します。