Comment on
in python, how do i check if an user boolean input is true or false
Just use 'strtobool' from distutils to parse str as bool much better than reinventing the wheel https://docs.python.org/3.11/distutils/apiref.html#distutils.util.strtobool
edit: ok it uses if internally so without if you could do it with match statement