Обсуждения
What is boolean in python?
-1 голос
3 ответовDoes this happen to anyone else?
0 голосов
2 ответовThere is a wrong answer.
-1 голос
2 ответовComparison operator
1 голос
1 ответ(true + false) > 2 + true
7 голосов
4 ответовBools and pointers
1 голос
15 ответовCan you explain this output?
4 голосов
5 ответовWhile (0&&0) Question
3 голосов
5 ответовایرانیا کمک
0 голосов
1 ответWhy y does not change?
3 голосов
7 ответовWhy we use this in print statement?🤔
2 голосов
1 ответWhy output is False?
2 голосов
6 ответовHow do i fix my Sign up
1 голос
1 ответJavascript simple problem..
0 голосов
2 ответовpairs = {1: "apple",
"orange": [2, 3, 4],
True: False,
None: "True",
}
print(pairs.get("orange"))
print(pairs.get(1))
print(pairs.get(12345, "not in dictionary"))
the output is
[2, 3, 4]
False
not in dictionary
why is print(pairs.get(13345,"not in dictionary")) giving the output not in dictionary.pls I nid explanation
2 голосов
4 ответовneed an advice
1 голос
2 ответовComparing among data type
1 голос
1 ответBool function problem
1 голос
1 ответAdding boolean values C++
0 голосов
1 ответWhy does this return False? Python
0 голосов
1 ответHow this code can be re-writed?
0 голосов
1 ответCan i write else if only if in java.
2 голосов
1 ответ[MAJOR_ISSUE] Accumulating bits
0 голосов
1 ответx = 42;
int num = 0;
while (num <3)
Consele.writeline (x);
num++;
int x = 42; is just an int with an asigned value of 42
int num=0; is what initiate the count for the while loop
while (num < 3); means 0<3 true, 1< 3 true, 2<3 true, the loop end at 2 bc 3 <3 is false
consele.writeline (x) will display 42 while num < 3
num++ will execute and then add 1 to check if the while loop still true, but it stop at 2, bc 3 makes it false.
so the consele.write will write 42 three times. x=42, remember the (x)
0 голосов
2 ответовHow can I make a reference for a list of variables. If false i want the system to check through all my variable to make sure they are false.
Code-
var2 = "Tanner"
var3 = "Jake"
question = input('What is your name? ')
if question == var2:
print('\nWelcome Back Tanner!')
if question == var3:
print('\nWelcome Back Jake!")
if question !=( This is where i need help!)( Is the != the correct way to write not equal?)
0 голосов
4 ответовАктуальное сегодня
Sticky position
3 Votes
Help please?
3 Votes
Ejercicio Pytho
0 Votes
Online voting system
2 Votes
What is that z for
0 Votes
Suggestions needed
4 Votes
SQL practice
2 Votes