組み込み関数 all() 使い方 bool = all(iterable) すべての要素が真のときTrueを返します value1=all() print(value1) #結果 True value2=all() print(value2) ... 組み込み関数