skip to content
barorin&?

Pythonでstr型をboolean型にする方法

/ 1 min read

はじめに

Pythonでstr型をboolean型にする方法です。

方法

distutils は python3.12 でなくなるらしいので、簡単な関数で。

def str2bool(s):
    return s.lower() in ["true", "t", "yes", "1"]