組み込み関数 bool() 使い方 bool = bool(x) xが「真」の時Trueを返しますxが「偽」もしくは省略されているときはFalseを返します print(bool(True)) #結果 Ture print(bool(False)... 組み込み関数