0
Python . Can someone please explain how my_boolean can help us in a program, because I think is useless ?
Pls respond No seen
11 Respuestas
+ 1
my_boolean is a variable name you can use any name that you like, in my example i use six and less_than_ten as a variable.
+ 1
yes, my_boolean is just an example
0
what did you mean by my_boolean ?
and stop reposting your question, maybe there are just few people online rn. it can be considered as spam.
0
Taste
I will stop we someone answer.
I mean : my_boolean, how this code can help us in a program
0
tell me on how you normally use it.
maybe you'll need to be more clear on your question. because i never heard of my_boolean in python other than user defined variable. i also try to google it with no result.
0
Taste
I want to know if there is a reason to use boolean (my_boolean) in a program
0
oooh a boolean, it mostlly used in if or loop. the main purpose of having my_boolean as its own variable is for readability.
you can also use the expression by itself without storing them in a variabe.
six = 6
less_than_ten = six < 10
if less_than_ten:
print("ok")
this one is also fine
if six < 10:
print("ok")
0
Taste
Where is my_boolean?
0
Or less_than_ten is the boolean
Which means that my_boolean is just an exemple and a booleans can be even paul_is_fat?
0
Taste
Aaaaaaaa
Thank you so much.
No one said that before.