프로그래밍/Python
[python] What will be the output?
홍반장水_
2023. 3. 10. 23:48
반응형
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: python, konply, numpy, matplotlib, networkx, pandas
github.com
What will be the output?
A.True
B.False
C.Error
D.None of above
"""_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
"""
반응형