python2.7.py 255 B

1234567891011121314
  1. import sys
  2. print 1, 2 >> sys.stdout
  3. foo = ur'This is not possible in Python 3.'
  4. # This is actually printing a tuple.
  5. #: E275:5
  6. print(1, 2)
  7. # True and False are not keywords in Python 2 and therefore there's no need for
  8. # a space.
  9. norman = True+False