
org.sonar.l10n.py.rules.python.PrintStatementUsage.html Maven / Gradle / Ivy
The print
statement was removed in Python 3.0. The built-in function should be used instead.
Noncompliant Code Example
print '1' # Noncompliant
Compliant Solution
print('1')
© 2015 - 2025 Weber Informatics LLC | Privacy Policy