The print statement was removed in Python 3.0. The built-in function should be used instead.
print
print '1' # Noncompliant
print('1')