+ 3
What is wrong? PYTHON
what is wrong with this? if (blah = nah): print ("lol") else: print ("ace")
3 odpowiedzi
+ 13
= isn't a conditional operator. The correct code is :
if blah == nah :
print ("lol")
else :
print ("ace")
Check this Snow C :
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2280/
+ 4
you shouldn't use () in if and dont use = it's not conditional operator
it should be
if blah==nah:
print("lol")
+ 4
and you should use proper indentation