14
submitted 1 year ago by jackpot@lemmy.ml to c/asklemmy@lemmy.ml

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 ")'.

you are viewing a single comment's thread
view the rest of the comments
[-] originalfrozenbanana@lemm.ee 11 points 1 year ago* (last edited 1 year ago)

Without if statements?

Apologies typing on my phone

def input_checker(input_str):

input_str = input_str.lower()

validation_dict = {“true”: “they input true”,
                               “false”: “they input false”}

return validation_dict.get(input_str, “They input something else”)

You are comparing the content of strings, not their truth value. A string is true if it’s not empty and false if it is. The string “True” is no closer to the bool True than the string “Oranges” is.

What you are looking for is input validation. Check the content of what they wrote and respond accordingly.

[-] jackpot@lemmy.ml 2 points 1 year ago

why is my input being seen as a string in the firsr place if i typecasted the variable as a boolean? how do i make the input itself a bool (rather than the variable?)

[-] Brotherly@lemm.ee 5 points 1 year ago* (last edited 1 year ago)

Worth remembering that python uses the concepts of truthy and falsey. Empty string ("") is falsey. Any other string ("true", "false", "0", etc.) Is truthy. All bool(str) does is evaluate whether str is truthy or falsey. It does not evaluate what str actually is.

So bool(input("Input True or False ") will return False is the user input is empty and True otherwise.

load more comments (7 replies)
load more comments (7 replies)
this post was submitted on 13 Sep 2023
14 points (65.9% liked)

Asklemmy

43334 readers
899 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy 🔍

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS