IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
This rule raises an issue when the print statement is used.
The print statement was removed in Python 3.0. The built-in function should be used instead.
print
print '1' # Noncompliant
print('1')