-
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 Python 3.8.1 (v3.8.1:1b293b6006, Dec 18 2019, 14:08:53) [Clang 6.0 (clang-600.0.57)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a = (1,2) >>> b = () >>> c = a+b >>> id(a) 140267085238016 >>> id(c) 140267085238016
'2021년 > 개발공부' 카테고리의 다른 글
도커를 설치하고 컨테이너 실행하기 (0) 2021.04.02 동적 타입 멈춰~! 파이썬의 타입힌팅 (4) 2021.03.23 AWS 인스턴스 생성하고 접속하기 (0) 2021.03.19 스프링시작하기#3 (0) 2021.03.18 맥에서 Go 설치하기 (0) 2021.03.18