はじめに
Pythonでstr型をboolean型にする方法です。
方法
distutils は python3.12 でなくなるらしいので、簡単な関数で。
def str2bool(s):
return s.lower() in ["true", "t", "yes", "1"]
Pythonでstr型をboolean型にする方法です。
distutils は python3.12 でなくなるらしいので、簡単な関数で。
def str2bool(s):
return s.lower() in ["true", "t", "yes", "1"]