For better readability, do not put more than one statement on a single line.

Noncompliant Code Example

if (True): print("hello")

Compliant Solution

if (True):
    print("hello")