to my knowledge, if you input any text it will return true and if you input nothing it will return false. if it’s possible without if statements, how do i check if they inputted ‘True’ or 'False (/ ‘1’ or ‘0’) when im doing ‘bool(input("Input True or False ")’.

  • @48954246
    link
    English
    51 year ago

    input("question").lower().startswith("t") is my go to. More fault tolerant and gets the job done