組み込み関数 len() サイズ 使い方 int = len( obj ) objのサイズを返します txt='abc' print(len(txt)) #結果 3 文字列str の文字数を返します list1=] print... 組み込み関数