Python sprawdź, czy więcej niż 1 jest prawdziwy

if sum([a,b,c,d]) > 1:
    print("Please specify at most one of 'a', 'b', 'c', 'd'.")
Real Raccoon