[python] What will

https://github.com/ngio/python_study/blob/main/true_false_quiz.py

GitHub – ngio/python_study: Python, Konply, Numpy, Matplotlib, Networkx, Pandas

python, konply, numpy, matplotlib, networkx, pandas – GitHub – ngio/python_study: 파이썬, konply, numpy, matplotlib, networkx, pandas

github.com

출력은 어떻게 될까요?
진실
나. 틀리다
C.오류
D. 해당 사항 없음

"""_summary_
    What will be the output? 
    A.True
    B.False
    C.Error
    D.None of above
"""

a = True
b = False

print(a or a and b and a)

"""
    True
"""