2021년/개발공부
python2, python3에서 tuple의 덧셈 차이
python3에서는 두 튜플중 하나가 비어있으면 그냥 있던 튜플을 반환한다. Python 2.7.16 (default, Jun 5 2020, 22:59:21) [GCC 4.2.1 Compatible Apple LLVM 11.0.3 (clang-1103.0.29.20) (-macos10.15-objc- on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = (1,2) >>> b = () >>> c = a + b >>> id(a) 4486121160 >>> id(c) 4486121016 >>> [2] + 21679 suspended python2 ✘ ⚙ jiwonwee@jiwon ~ python3 ..
2021. 3. 23. 14:01