https://github.com/ngio/python_study/blob/main/true_false_quiz.py
출력은 어떻게 될까요?
진실
나. 틀리다
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
"""