len関数について

  最終更新日:2022/05/18


説明

len関数は、組み込み関数の1つです。

引数のオブジェクトの長さ、または要素数を取得する。

書き方

1
len ( オブジェクト )


使い方

1
len ( 'Hello' )

   ↓結果↓

1
5