본문 바로가기
프로그래밍 언어/Python

괄호의 중요성

by Sondho 2020. 4. 28.
a = {1, 2, 3}
print(type(a))
print(type(1 in a))
if 1 in a is True:
    print("있다.")
else:
    print("없다.")
    
    
# 실행결과
<class 'set'>
<class 'bool'>
없다.
a = {1, 2, 3}
print(type(a))
print(type(1 in a))
if (1 in a) is True:
    print("있다.")
else:
    print("없다.")
    
    
# 실행결과
<class 'set'>
<class 'bool'>
있다.

댓글