목차 1 개요 2 같이 보기 개요 Python is 파이썬 is a = b = 1 print( a is b ) # True c = 1 print( a is c ) # True 같이 보기 Python ==