0
Why doesn't the "if" statement working?
6 Antworten
+ 19
& use if T == S:
also missing parentheses in print
print ("it's working")
in both print
+ 14
U assigned T a value , not compared
use "==" in place of "="
//hope it helps 👍
+ 12
your "If" on line 12 needs to be completely lowercase. like "if". Also needs two ='s, like "=="
your print statements need parenthesis. like print("finally")
+ 4
You used capital 'i' in if
0
Sorry.. But I still dont get it..
If T=A:((()) #this is the problem, what should I do to make it work??)))))
print "its working!"
else:
print "finally"
0
Ohh, now i see it.. Thank u all