codechacha / codechacha-comments-repo

codechacha-comments-repo
0 stars 0 forks source link

Python - 'is'와 '=='의 차이점 #19

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Python - 'is'와 '=='의 차이점

파이썬에서 is==는 조건문에서 두개의 변수가 같은지 체크할 때 자주 사용하는데 차이점이 있습니다. is는 변수의 Object(객체)가 같을 때 True를 리턴, ==는 변수의 Value(값)이 같을 때 True를 리턴 a, b, c는 모두 empty list입니다. 모두 같은 value(값)을 갖고 있지만 a와 b는 다른 object(객

https://codechacha.com/ko/python-difference-between-is-and-equals/

Denia-park commented 2 years ago

덕분에 좋은 내용 잘 보고 갑니다. 정말 감사합니다.