K
Size: a a a
K
🚀
w
S
K
S
S
У
🚀
S
py3
if True == True:
True = True
File "313912255/source.py", line 2
True = True
^
SyntaxError: can't assign to keyword
A
S
py2
if True == True:
True = False
print True
False
A
py3
if (True + True) == False:
print("jalap")
A
py3
Language:
py3
Source:
if (True + True) != False:
print("jalap")
File "1238171783/source.py", line 1
Language:
^
SyntaxError: invalid syntax
МШ
K
K
py3
Language:
py3
Source:
if (True + True) != False:
print("jalap")
File "1238171783/source.py", line 1
Language:
^
SyntaxError: invalid syntax
G
A