point=['c', 'b', 'd']
if 'a' and 'b' and 'c' and 'd' in point:
    print(True)
else:
    print(False)

リスト内にaがないのにTrueが出力されます。andの書き方について教えていただきたいです。