Python入門 if文の中で改行したいのですが?

if文の中で改行したいのですが?

長い・・・・。

if 1 == 1 and 2 == 2 and 3 == 3 and 4 == 4:
    print('equal!!')
# エラー 「SyntaxError: invalid syntax」
if 1 == 1 and
   2 == 2 and
   3 == 3 and
   4 == 4:
    print('equal!!')
# エラー 「SyntaxError: invalid syntax」
if     1 == 1
   and 2 == 2
   and 3 == 3
   and 4 == 4:
    print('equal!!')

小括弧で囲むことで改行可能です

if (1 == 1 and
    2 == 2 and
    3 == 3 and
    4 == 4):
    print('equal!!')

書籍の紹介

Python入門 forをC言語のように記述したいのですが?

Python入門 forをC言語のように記述したいのですが?

Python入門 配列を初期化したいのですが?

Python入門 配列を初期化したいのですが?