[ create a new paste ] login | about

Link: http://codepad.org/IA7k5jEg    [ raw code | output | fork ]

Python, pasted on Aug 31:
1
2
3
4
5
x = True
y = False

print not x == y
print x == not y


Output:
1
2
3
4
  Line 5
    print x == not y
                 ^
SyntaxError: invalid syntax


Create a new paste based on this one


Comments: