この質問には elif を使用する必要がありますか? どうすればいいですか?メガ初心者の質問で申し訳ありません。
def hint1(p1, p2, p3, p4):
''' (bool, bool, bool, bool) -> bool
Return True iff at least one of the boolen parameters
p1, p2, p3, or p4 is True.
>>> hint1(False, True, False, True)
True
'''