This statement was removed in Python 3.0 and built-in function should be used instead.

The following code snippet illustrates this rule :

print '1'   # Non-Compliant
print('1')  # Compliant