文字数を求める

書式

len(文字列)

説明

文字列の長さを調べるにはlen()を使います。

サンプル

mystr = "Sample"
print len(mystr)

実行結果 ダウンロード

6