this post was submitted on 13 Sep 2023
14 points (65.9% liked)
Asklemmy
43755 readers
1224 users here now
A loosely moderated place to ask open-ended questions
If your post meets the following criteria, it's welcome here!
- Open-ended question
- 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.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- !lemmy411@lemmy.ca: a community for finding communities
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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?)
User inputs are strings, which can be anything. You are hoping they input True or false but what if they input tRUe or FALSE77 or Hunter4 or jgidqopqncb uriwnsvsveyqiaoNcbtjwnak? bool(“tRUe”) doesn’t evaluate to True or False in the way you think it does.
If you want to convert user input to a bool use a lookup dict with some validation rules (like lower casing input text) to sanitize the input. I cannot emphasize this enough - never trust user input.
Always trust user input'); DROP TABLE users;
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.
You can use eval(input). It converts string to whatever the actual content is.
Which is really bad if the user inputs executable code. Never call eval on unsanitized text
wait so eval(bool(input('Input:')
Yeah, don’t do that. Users could accidentally or maliciously type something that would get executed as python code and break your program