Why it's wrong? X=4 X + = 5 Print (x) Don't get it? Need help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why it's wrong? X=4 X + = 5 Print (x) Don't get it? Need help

Final Quiz answer?

28th Jan 2017, 12:43 AM
Bella
7 Answers
+ 5
Python -> basic concepts -> variables -> part 3 "Python is a case sensitive programming language. Thus, Lastname and lastname are two different variable names in Python." So X and x are different variables. X ≠ x
28th Jan 2017, 12:50 AM
Jafca
Jafca - avatar
+ 3
1) make a space: x = 4 2) remove a space in the operator: x += 5 3) don't capitalize, unless it's constant: X --> x :)
28th Jan 2017, 12:58 AM
Heroes Killer
Heroes Killer - avatar
+ 3
4) don't use space in print(x)
28th Jan 2017, 1:00 AM
Heroes Killer
Heroes Killer - avatar
+ 1
X ~= x
28th Jan 2017, 12:59 AM
Jhonnatha Andrade
Jhonnatha Andrade - avatar
0
Thank you everyone! I got it.
28th Jan 2017, 1:07 AM
Bella
0
looks like the system does not accept 'x' to be the answer
2nd Feb 2018, 7:19 PM
Mon R
Mon R - avatar
0
not getting it ! every entered anwers seems to br wrong.
4th Jan 2021, 11:17 AM
Sakshi
Sakshi - avatar