Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

print_always_warns.py 207B

12345678
  1. """Check print statement always warns even if in Python 2 block """
  2. from __future__ import absolute_import
  3. import six
  4. if six.PY2:
  5. print "Python 3 fails to parse print statements." # [print-statement]