본문 바로가기

WIL(What I Learned)

파이썬 == 연산자 활용 예시

x = 5
y = 3

print(x == y)

# returns False because 5 is not equal to 3

(출처: w3schools)