Q&A Discussions
There is a wrong answer.
-1 Vote
2 AnswersComparison operator
1 Vote
1 Answer(true + false) > 2 + true
7 Votes
4 AnswersBools and pointers
1 Vote
15 AnswersWhile (0&&0) Question
3 Votes
5 AnswersŲ§ŪŲ±Ų§ŁŪŲ§ Ś©Ł
Ś©
0 Votes
1 AnswerWhy y does not change?
3 Votes
7 AnswersWhy output is False?
2 Votes
6 AnswersHow do i fix my Sign up
1 Vote
1 AnswerJavascript simple problem..
0 Votes
2 Answerspairs = {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 Votes
4 Answersneed an advice
1 Vote
2 AnswersBool function problem
1 Vote
1 AnswerAdding boolean values C++
0 Votes
1 Answerx = 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 Votes
2 AnswersHow 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 Votes
4 AnswersHot today
Time up code for data revision
0 Votes
Web vs python
1 Votes
Best Python Calculator Code
1 Votes
I want to learn why this error occurs in "while loop" function of Pythone.Can someone explain to me?
1 Votes
Animation
2 Votes
Clean Code
2 Votes
While or for loop
0 Votes
how to import in pygame
0 Votes