我需要爲這個問題使用elif嗎?我該如何解決它? 對不起,這個超級noob問題。Python的布爾參數3
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
'''
'def hint1(* args):return any(args)' – abarnert
嚴重的是,您提供了哪些學習資料?這是一個基本問題,你的學習資料應該包含你需要的答案。 – Marcin